-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpremake4.lua
58 lines (39 loc) · 1.01 KB
/
premake4.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
solution "WellDrift"
configurations {"Release", "Debug"}
configuration "Release"
flags {"StaticRuntime", "NoMinimalRebuild", "NoFramePointer", "OptimizeSpeed"}
configuration "Debug"
flags {"StaticRuntime", "Symbols","NoMinimalRebuild", "NoEditAndContinue"}
platforms {"x32","x64"}
configuration {"x64", "Debug"}
targetsuffix "x64_d"
configuration {"x64", "Release"}
targetsuffix "x64"
configuration {"Windows"}
defines {"WIN32", "_CONSOLE", "_CRT_SECURE_NO_WARNINGS"}
configuration {"Debug"}
defines {"_DEBUG"}
configuration {"Release"}
defines {"NDEBUG"}
configuration{}
language "C++"
location ("./Solution")
includedirs {
"./",
"../boost_1_56_0",
"../gtk+/include",
"../gtk+/include/atk-1.0",
"../gtk+/include/glib-2.0",
"../gtk+/include/gtk-2.0",
"../gtk+/include/gdk-pixbuf-2.0",
"../gtk+/include/cairo",
"../gtk+/include/pango-1.0",
"../gtk+/lib/gtk-2.0/include",
"../gtk+/lib/glib-2.0/include",
}
libdirs {
"./lib",
"../gtk+/lib",
}
include "./WellSimulator"
include "./libgtkgraph"