Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/actions/codeblocks/_codeblocks.lua')
-rw-r--r--src/actions/codeblocks/_codeblocks.lua14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/actions/codeblocks/_codeblocks.lua b/src/actions/codeblocks/_codeblocks.lua
index 1d378be..114173a 100644
--- a/src/actions/codeblocks/_codeblocks.lua
+++ b/src/actions/codeblocks/_codeblocks.lua
@@ -10,27 +10,27 @@
trigger = "codeblocks",
shortname = "Code::Blocks",
description = "Generate Code::Blocks project files",
-
+
valid_kinds = { "ConsoleApp", "WindowedApp", "StaticLib", "SharedLib" },
-
+
valid_languages = { "C", "C++" },
-
+
valid_tools = {
cc = { "gcc", "ow" },
},
-
+
onsolution = function(sln)
premake.generate(sln, "%%.workspace", premake.codeblocks.workspace)
end,
-
+
onproject = function(prj)
premake.generate(prj, "%%.cbp", premake.codeblocks.cbp)
end,
-
+
oncleansolution = function(sln)
premake.clean.file(sln, "%%.workspace")
end,
-
+
oncleanproject = function(prj)
premake.clean.file(prj, "%%.cbp")
premake.clean.file(prj, "%%.depend")