-
Notifications
You must be signed in to change notification settings - Fork 5
/
premake5.lua
110 lines (87 loc) · 1.73 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
dependencies = {
basePath = "./deps"
}
function dependencies.load()
dir = path.join(dependencies.basePath, "premake/*.lua")
deps = os.matchfiles(dir)
for i, dep in pairs(deps) do
dep = dep:gsub(".lua", "")
require(dep)
end
end
function dependencies.imports()
for i, proj in pairs(dependencies) do
if type(i) == 'number' then
proj.import()
end
end
end
function dependencies.projects()
for i, proj in pairs(dependencies) do
if type(i) == 'number' then
proj.project()
end
end
end
include "deps/minhook.lua"
include "deps/rapidjson.lua"
include "build/conanbuildinfo.premake.lua"
workspace "ImasSCSP-localify"
conan_basic_setup()
location "./build"
objdir "%{wks.location}/obj"
targetdir "%{wks.location}/bin/%{cfg.platform}/%{cfg.buildcfg}"
architecture "x64"
platforms "x64"
configurations {
"Debug",
"Release",
}
buildoptions {
"/std:c++latest",
"/utf-8",
}
systemversion "latest"
symbols "On"
staticruntime "On"
editandcontinue "Off"
warnings "Off"
characterset "ASCII"
flags {
"NoIncrementalLink",
"NoMinimalRebuild",
"MultiProcessorCompile",
}
staticruntime "Off"
configuration "Release"
optimize "Full"
buildoptions "/Os"
configuration "Debug"
optimize "Debug"
dependencies.projects()
project "ImasSCSP-localify"
targetname "version"
language "C++"
kind "SharedLib"
files {
"./src/**.hpp",
"./src/**.cpp",
"./src/**.asm",
"./src/**.def",
}
includedirs {
"./src",
"%{prj.location}/src",
}
dependencies.imports()
linkoptions { conan_sharedlinkflags }
configuration "Release"
linkoptions "/SAFESEH:NO"
syslibdirs {
"./libs/Release",
}
configuration "Debug"
linkoptions "/SAFESEH:NO"
syslibdirs {
"./libs/Debug",
}