diff options
author | 2016-11-03 10:04:29 +0100 | |
---|---|---|
committer | 2016-11-03 10:04:29 +0100 | |
commit | 330e3cb28ec6ab5af62fa17f5293c86a18c25ab0 (patch) | |
tree | e250e077d64abd0d9bc4f604278bf029d4b6f3f9 /3rdparty/genie/src/actions/codeblocks/codeblocks_workspace.lua | |
parent | a74e7b041e5d3231c10b244894e298aba710689d (diff) |
Finally sync with GENie, no more local changes (nw)
Diffstat (limited to '3rdparty/genie/src/actions/codeblocks/codeblocks_workspace.lua')
-rw-r--r-- | 3rdparty/genie/src/actions/codeblocks/codeblocks_workspace.lua | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/3rdparty/genie/src/actions/codeblocks/codeblocks_workspace.lua b/3rdparty/genie/src/actions/codeblocks/codeblocks_workspace.lua deleted file mode 100644 index 4a01a467b8b..00000000000 --- a/3rdparty/genie/src/actions/codeblocks/codeblocks_workspace.lua +++ /dev/null @@ -1,27 +0,0 @@ --- --- codeblocks_workspace.lua --- Generate a Code::Blocks workspace. --- Copyright (c) 2009 Jason Perkins and the Premake project --- - - function premake.codeblocks.workspace(sln) - _p('<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>') - _p('<CodeBlocks_workspace_file>') - _p(1,'<Workspace title="%s">', sln.name) - - for prj in premake.solution.eachproject(sln) do - local fname = path.join(path.getrelative(sln.location, prj.location), prj.name) - local active = iif(prj.project == sln.projects[1], ' active="1"', '') - - _p(2,'<Project filename="%s.cbp"%s>', fname, active) - for _,dep in ipairs(premake.getdependencies(prj)) do - _p(3,'<Depends filename="%s.cbp" />', path.join(path.getrelative(sln.location, dep.location), dep.name)) - end - - _p(2,'</Project>') - end - - _p(1,'</Workspace>') - _p('</CodeBlocks_workspace_file>') - end - |