source: trunk/tests/cachebuf_test/premake4.lua @ 229

Last change on this file since 229 was 102, checked in by epyon, 12 years ago
  • cachebuf_test added - testing the cache buffer and interleaved buffers
  • I'm making a note here - HUGE SUCCESS
File size: 594 bytes
Line 
1solution "nv_cachebuf_test"
2        configurations { "debug", "release" }
3
4        language "C++"
5        flags { "ExtraWarnings", "NoPCH" }
6
7        configuration "gmake"   
8                buildoptions "-std=c++11"
9
10        configuration "debug"
11                defines { "DEBUG" }
12                flags { "Symbols", "StaticRuntime" }
13                objdir (_ACTION.."/debug")
14
15        configuration "release"
16                defines { "NDEBUG" }
17                flags { "Optimize", "StaticRuntime" }
18                objdir (_ACTION.."/release")
19
20        dofile("cachebuf_test.lua")
21        dofile("../../nv.lua")
22
23if _ACTION == "clean" then
24        for action in premake.action.each() do
25                os.rmdir(action.trigger)
26        end
27end
Note: See TracBrowser for help on using the repository browser.