premake script cleanup

This commit is contained in:
Jordan Cristiano 2015-06-14 17:27:36 -04:00
parent c07678a37e
commit a02b034115
1 changed files with 2 additions and 1 deletions

View File

@ -13,6 +13,7 @@ solution "demboyz"
configuration "gmake"
-- Enables C++11 support.
buildoptions { "-std=c++0x" }
configuration {}
project "demboyz"
kind "ConsoleApp"
@ -33,9 +34,9 @@ solution "demboyz"
configuration "Debug"
targetdir (_ACTION .. "/build/Debug")
defines { "DEBUG" }
flags { "Symbols" }
configuration "Release"
targetdir (_ACTION .. "/build/Release")
defines { "NDEBUG" }
optimize "Full"
configuration {}