This repository has been archived by the owner on Dec 25, 2017. It is now read-only.
forked from ggreer/the_silver_searcher
-
Notifications
You must be signed in to change notification settings - Fork 25
/
premake5.lua
121 lines (107 loc) · 3.01 KB
/
premake5.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
--
-- to generate Visual Studio files in `build` directory, run:
-- premake5 vs2010 or premake5 vs2008
--
-- to Make files in `build` directory, run:
-- premake5 gmake
--
-- to change `build` directory, run:
-- premake5 /to=vs2010 vs2010
-- or:
-- premake5 --to=vs2010 vs2010
--
newoption {
trigger = 'to',
value = 'path',
description = 'Set the output location for the generated files'
}
solution 'ag'
location (_OPTIONS['to'] or 'build')
configurations { 'Debug', 'Release', 'ReleaseKjk' }
flags { 'StaticRuntime', 'NoRTTI', 'Unicode', 'NoExceptions', }
defines {
-- windows
'WIN32', '_WIN32', 'WINDOWS', '_WINDOWS',
-- pthread
'PTW32_BUILD_INLINED', 'PTW32_STATIC_LIB', '__CLEANUP_C',
-- pcre
'HAVE_CONFIG_H', 'PCRE_STATIC',
-- zlib
'Z_SOLO',
}
filter 'action:vs*'
flags { 'NoMinimalRebuild', 'MultiProcessorCompile', }
disablewarnings {
'4996', -- 4996 - same as define _CRT_SECURE_NO_WARNINGS
'4800', -- 4800 - int -> bool coversion
'4127', -- 4127 - conditional expression is constant
'4100', -- 4100 - unreferenced formal parameter
'4244', -- 4244 - possible loss of data due to conversion
}
forceincludes 'pch.h'
pchheader 'pch.h'
pchsource 'wincompat/pch.c'
filter 'configurations:Debug'
flags { 'Symbols' }
targetdir 'dbg'
defines { '_DEBUG', 'DEBUG' }
optimize 'Debug'
filter 'configurations:Release*'
targetdir 'rel'
defines { 'NDEBUG' }
optimize 'Full'
project 'ag'
uuid '066DD594-55FF-4E6C-9DB7-A68131864C7B'
kind 'ConsoleApp'
language 'C++'
includedirs {
'src',
'wincompat',
'wincompat/pcre', -- position must be back of 'wincompat', because it has config.h
'wincompat/pthread',
'wincompat/zlib',
}
links {
'shlwapi',
'dependlib',
}
files {
'src/**.h',
'src/**.c',
'wincompat/*.h',
'wincompat/*.c',
}
filter 'configurations:ReleaseKjk'
defines { 'KJK_BUILD' }
files 'wincompat/kjk_crash_handler.cpp'
filter 'action:not vs*'
removefiles 'wincompat/pch.h'
removefiles 'wincompat/pch.c'
filter 'action:vs*'
buildoptions '/TP' -- /TP - compile as c++
project 'dependlib'
uuid 'D5FE0DC7-F69E-408B-809A-B01B414F9DDF'
kind 'StaticLib'
language 'C'
-- add configmap for solution.
configmap {
['ReleaseKjk'] = 'Release',
}
includedirs {
'wincompat/pcre',
'wincompat/pthread',
'wincompat/zlib',
}
files {
'wincompat/zlib/*.h',
'wincompat/zlib/*.c',
'wincompat/pcre/*.h',
'wincompat/pcre/*.c',
'wincompat/pthread/*.h',
'wincompat/pthread/pthread.c',
}
filter 'action:vs*'
files {
'wincompat/pch.h',
'wincompat/pch.c',
}