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-10 00:02:49 +0400
committerstarkos <none@none>2009-04-10 00:02:49 +0400
commitb55bfe89b33edca8f971cbd43bfeda415fc8eb48 (patch)
tree056892137dec63aefc0b6b59e072a78f07ecfb28 /samples
parent0c794084b29f35a3af53d414f320aab4a2195bca (diff)
Plaform-specific settings and Xbox 360 support now working in Visual Studio 2005/2008
Diffstat (limited to 'samples')
-rw-r--r--samples/project/premake4.lua11
1 files changed, 8 insertions, 3 deletions
diff --git a/samples/project/premake4.lua b/samples/project/premake4.lua
index ef1e595..49dff2a 100644
--- a/samples/project/premake4.lua
+++ b/samples/project/premake4.lua
@@ -1,7 +1,9 @@
solution "PremakeTestbox"
configurations { "Debug", "Release" }
- platforms { "x32", "x64" }
-
+ platforms { "x32", "xbox360" }
+
+ objdir "obj"
+
-- solution level configuration
configuration "Debug"
@@ -13,7 +15,10 @@ solution "PremakeTestbox"
targetdir "bin/release"
flags { "Optimize" }
defines { "NDEBUG" }
-
+
+ configuration "x64"
+ defines { "IS_64BIT" }
+
-- include all the projects