-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpremake4.lua
45 lines (38 loc) · 1.02 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
solution("bitplanes")
configurations {"Debug", "Release"}
targetdir("bin")
configuration "Debug"
defines { "DEBUG" }
flags { "Symbols" }
configuration "Release"
defines { "NDEBUG" }
flags { "Optimize" }
project("bitplanes")
uuid("72c2ca20-6128-11e1-b86c-0800200c9a66")
kind("WindowedApp")
language("C++")
links {
"allegro",
"allegro_image",
"allegro_acodec",
"allegro_ttf",
"allegro_font",
"allegro_audio",
"allegro_acodec",
"boost_system",
"boost_filesystem",
"lua5.1"
--"luabind"
}
files {
"src/**.h",
"src/**.cpp"
}
configuration { "linux" }
includedirs {
"/usr/include/lua5.1",
}
configuration {}
configuration { "gmake" }
buildoptions { "-std=c++0x -pedantic" }
configuration {}