Last change
on this file since 183 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:
543 bytes
|
Rev | Line | |
---|
[2] | 1 | solution "nv"
|
---|
| 2 | configurations { "debug", "release" }
|
---|
| 3 | targetdir "bin"
|
---|
| 4 | flags { "ExtraWarnings", "NoPCH" }
|
---|
| 5 | language "C++"
|
---|
| 6 |
|
---|
| 7 | configuration "debug"
|
---|
| 8 | defines { "DEBUG" }
|
---|
| 9 | flags { "Symbols" }
|
---|
| 10 | targetdir "bin"
|
---|
[120] | 11 | objdir (_ACTION or "".."/debug")
|
---|
[2] | 12 |
|
---|
| 13 | configuration "release"
|
---|
| 14 | defines { "NDEBUG" }
|
---|
| 15 | flags { "Optimize" }
|
---|
| 16 | targetdir "bin"
|
---|
[120] | 17 | objdir (_ACTION or "".."/release")
|
---|
[2] | 18 |
|
---|
| 19 | dofile("nv.lua")
|
---|
| 20 |
|
---|
| 21 | newaction {
|
---|
| 22 | trigger = "doc",
|
---|
| 23 | description = "Run doxygen",
|
---|
| 24 | execute = function ()
|
---|
| 25 | os.execute("doxygen")
|
---|
| 26 | end
|
---|
| 27 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.