Last change
on this file since 120 was
120,
checked in by epyon, 12 years ago
|
- Nova now properly compiles and works under:
mingw GCC 4.6 32-bit target
mingw GCC 4.6 64-bit targte
clang 3.2 32-bit target (64-bit clang doesn't work under windows)
- warning removal will follow soon
|
File size:
546 bytes
|
Rev | Line | |
---|
[46] | 1 | solution "nv_render_test"
|
---|
| 2 | configurations { "debug", "release" }
|
---|
| 3 |
|
---|
| 4 | language "C++"
|
---|
| 5 | flags { "ExtraWarnings", "NoPCH" }
|
---|
| 6 |
|
---|
| 7 | configuration "debug"
|
---|
| 8 | defines { "DEBUG" }
|
---|
| 9 | flags { "Symbols", "StaticRuntime" }
|
---|
[120] | 10 | objdir (_ACTION or "".."/debug")
|
---|
[46] | 11 |
|
---|
| 12 | configuration "release"
|
---|
| 13 | defines { "NDEBUG" }
|
---|
| 14 | flags { "Optimize", "StaticRuntime" }
|
---|
[120] | 15 | objdir (_ACTION or "".."/release")
|
---|
[46] | 16 |
|
---|
| 17 | dofile("render_test.lua")
|
---|
| 18 | dofile("../../nv.lua")
|
---|
| 19 |
|
---|
| 20 | if _ACTION == "clean" then
|
---|
| 21 | for action in premake.action.each() do
|
---|
| 22 | os.rmdir(action.trigger)
|
---|
| 23 | end
|
---|
[61] | 24 | end
|
---|
Note: See
TracBrowser
for help on using the repository browser.