-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpremake4.lua
More file actions
69 lines (58 loc) · 1.01 KB
/
Copy pathpremake4.lua
File metadata and controls
69 lines (58 loc) · 1.01 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
-- A solution contains projects, and defines the available configurations
solution "Dependencies"
configurations {
"Debug",
"Release",
}
configuration "gmake Debug"
do
buildoptions { "-g" }
linkoptions { "-g" }
end
configuration "gmake"
do
buildoptions {
"-Wall",
"-U__CYGWIN__",
}
end
configuration "vs*"
do
--linkoptions { "/NODEFAULTLIB:LIBCMT" }
buildoptions {
"/wd4996",
}
end
configuration "windows"
do
defines {
"WIN32",
"_WINDOWS",
}
end
configuration "Debug"
do
defines { "DEBUG" }
flags { "Symbols" }
targetdir "debug"
end
configuration "Release"
do
defines { "NDEBUG" }
flags { "Optimize" }
targetdir "release"
end
configuration {}
-- freetype
include "freetype"
-- opengl
include "glew"
include "freeglut"
-- irrlicht
include "zlib"
include "lzma"
include "jpeglib"
include "libpng"
include "bzip2"
-- msgpack
include "msgpack"