-
Notifications
You must be signed in to change notification settings - Fork 0
/
premake5.lua
118 lines (95 loc) · 1.87 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
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 "deps/SQLiteCpp.lua"
workspace "imas-sc-prism-localify"
location "./build"
objdir "%{wks.location}/obj"
targetdir "%{wks.location}/bin/%{cfg.platform}/%{cfg.buildcfg}"
architecture "x64"
platforms "x64"
configurations {
"Debug",
"Release",
}
toolset "clang"
systemversion "latest"
symbols "On"
staticruntime "On"
editandcontinue "Off"
warnings "Off"
characterset "ASCII"
cppdialect "C++20"
cdialect "C17"
flags {
"NoIncrementalLink",
"NoMinimalRebuild",
"MultiProcessorCompile",
}
staticruntime "Off"
filter "configurations:Release"
optimize "Full"
buildoptions "/Os"
filter "configurations:Debug"
optimize "Debug"
dependencies.projects()
project "imas-sc-prism-localify"
targetname "version"
language "C++"
kind "SharedLib"
files {
"./src/**.hpp",
"./src/**.cpp",
"./src/**.h",
"./src/**.c",
"./src/**.asm",
"./src/**.def",
"./src/**.rc",
}
links {
"Shlwapi",
"WinHttp"
}
includedirs {
"./src",
"%{prj.location}/src",
}
nuget {
"Microsoft.Web.WebView2:1.0.2151.40",
"Microsoft.Windows.ImplementationLibrary:1.0.231028.1"
}
dependencies.imports()
filter "configurations:Release"
linkoptions "/SAFESEH:NO"
syslibdirs {
"./libs/Release",
}
filter "configurations:Debug"
linkoptions "/SAFESEH:NO"
syslibdirs {
"./libs/Debug",
}