source: trunk/premake5.lua @ 526

Last change on this file since 526 was 362, checked in by epyon, 10 years ago
File size: 577 bytes
Line 
1solution "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", "StaticRuntime" }
10                targetdir "bin"
11                objdir (_ACTION or "".."/debug")
12
13        configuration "release"
14                defines { "NDEBUG" }
15                flags { "Optimize", "StaticRuntime" }
16                targetdir "bin"
17                objdir (_ACTION or "".."/release")
18
19        dofile("nv.lua")
20       
21newaction {
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.