-
Notifications
You must be signed in to change notification settings - Fork 0
/
blueprint.lua
37 lines (32 loc) · 896 Bytes
/
blueprint.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
-- Blueprint file for cubuild
-- See http://github.com/bobsomers/cubuild for more info
-- Where can I find the GPU Computing SDK?
gpu_sdk_path "/opt/nvidia/3.2/gpusdk"
-- Which configuration should be the default?
default "debug"
-- The debug build configuration.
config "debug"
output "build-debug"
debugging "on"
profiling "off"
optimizing "off"
defines {"DEBUG"}
-- The profiling build configuration.
config "profile"
output "build-profile"
debugging "on"
profiling "on"
optimizing "on"
defines {"DEBUG"}
-- The release build configuration.
config "release"
output "build-release"
debugging "off"
profiling "off"
optimizing "on"
defines {"NDEBUG", "RELEASE"}
includes {"my/special/incs", "your/incs"}
cflags {"-Wall", "-ffast_math"}
libdirs {"my/libs", "your/libs"}
libs {"m", "boost_regex"}
lflags {"-m64"}