-
Notifications
You must be signed in to change notification settings - Fork 8
/
genie.lua
60 lines (52 loc) · 908 Bytes
/
genie.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
52
53
54
55
56
57
58
59
60
solution "touch-joy"
location(_ACTION)
configurations {"Develop"}
platforms {"x64"}
targetdir "bin"
debugdir "data"
project "touch-joy"
kind "WindowedApp"
language "C"
defines {
"_CRT_SECURE_NO_WARNINGS",
"GB_INI_MAX_SECTION_LENGTH=16",
"GB_INI_MAX_NAME_LENGTH=16"
}
files {
"src/*.h",
"src/*.c"
}
flags {
"ExtraWarnings",
"FatalWarnings",
"OptimizeSize",
"StaticRuntime",
"Symbols",
"WinMain",
"NoEditAndContinue",
"NoNativeWChar",
"NoExceptions",
"NoFramePointer"
}
project "test"
kind "ConsoleApp"
language "C"
defines {
"_CRT_SECURE_NO_WARNINGS",
"_TEST",
"GB_INI_MAX_SECTION_LENGTH=16",
"GB_INI_MAX_NAME_LENGTH=16"
}
files {
"src/*.h",
"src/*.c"
}
flags {
"FatalWarnings",
"OptimizeSize",
"StaticRuntime",
"Symbols",
"NoEditAndContinue",
"NoNativeWChar",
"NoExceptions"
}