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:
authorstarkos <none@none>2009-04-20 23:06:48 +0400
committerstarkos <none@none>2009-04-20 23:06:48 +0400
commit2cdd025e5b28a0d6d7ac8c01b902cb776d572c4e (patch)
treebeb34f7cd7ad403842c7d6d00c2b89e4df7fc7ed /samples
parentd16733117a0f10ad1a8dd2ba951937f44033ef80 (diff)
Implemented platform flags for GCC; added "native" platform support
Diffstat (limited to 'samples')
-rw-r--r--samples/project/premake4.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/samples/project/premake4.lua b/samples/project/premake4.lua
index 49dff2a..1f39818 100644
--- a/samples/project/premake4.lua
+++ b/samples/project/premake4.lua
@@ -1,6 +1,6 @@
solution "PremakeTestbox"
configurations { "Debug", "Release" }
- platforms { "x32", "xbox360" }
+ platforms { "native", "x64", "xbox360" }
objdir "obj"
@@ -27,7 +27,7 @@ solution "PremakeTestbox"
include "CppSharedLib"
include "CppStaticLib"
- if _ACTION ~= "codeblocks" then
+ if _ACTION ~= "codeblocks" and _ACTION ~= "codelite" then
include "CsSharedLib"
include "CsConsoleApp"
end