source: trunk/tests/gui_test/premake4.lua @ 547

Last change on this file since 547 was 351, checked in by epyon, 10 years ago
  • gui hover and selected support
  • minor changes
File size: 438 bytes
Line 
1solution "nv_gui_test"
2        configurations { "debug", "release" }
3
4        language "C++"
5        flags { "ExtraWarnings", "NoPCH" }
6
7        configuration "debug"
8                defines { "DEBUG" }
9                flags { "Symbols", "StaticRuntime" }
10                objdir ("../../".._ACTION.."/debug")
11
12        configuration "release"
13                defines { "NDEBUG" }
14                flags { "Optimize", "StaticRuntime" }
15                objdir ("../../".._ACTION.."/release")
16
17        dofile("../../nv.lua")
18        dofile("gui_test.lua")
Note: See TracBrowser for help on using the repository browser.