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/codelite/_codelite.lua')
-rw-r--r--src/actions/codelite/_codelite.lua14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/actions/codelite/_codelite.lua b/src/actions/codelite/_codelite.lua
index e7da871..efbe3cd 100644
--- a/src/actions/codelite/_codelite.lua
+++ b/src/actions/codelite/_codelite.lua
@@ -10,29 +10,29 @@
trigger = "codelite",
shortname = "CodeLite",
description = "Generate CodeLite project files",
-
+
valid_kinds = { "ConsoleApp", "WindowedApp", "StaticLib", "SharedLib" },
-
+
valid_languages = { "C", "C++" },
-
+
valid_tools = {
cc = { "gcc" },
},
-
+
onsolution = function(sln)
premake.generate(sln, "%%.workspace", premake.codelite.workspace)
end,
-
+
onproject = function(prj)
premake.generate(prj, "%%.project", premake.codelite.project)
end,
-
+
oncleansolution = function(sln)
premake.clean.file(sln, "%%.workspace")
premake.clean.file(sln, "%%_wsp.mk")
premake.clean.file(sln, "%%.tags")
end,
-
+
oncleanproject = function(prj)
premake.clean.file(prj, "%%.project")
premake.clean.file(prj, "%%.mk")