-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpremake5.lua
More file actions
146 lines (122 loc) · 3.94 KB
/
Copy pathpremake5.lua
File metadata and controls
146 lines (122 loc) · 3.94 KB
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
include("premake/utils")
SDK_PATH = os.getenv("HL2SDKCS2")
MM_PATH = os.getenv("MMSOURCE_DEV")
local breakpadPath = "vendor/breakpad/src"
if(SDK_PATH == nil) then
error("INVALID HL2SDK PATH")
end
if(MM_PATH == nil) then
error("INVALID METAMOD PATH")
end
newaction {
trigger = "package",
description = "Package AcceleratorCS2",
execute = function()
local package_path = path.join(_MAIN_SCRIPT_DIR, "build", "package", "AcceleratorCS2")
local package_bin_path = path.join(package_path, "addons", "AcceleratorCS2")
local package_metamod_path = path.join(package_path, "addons", "metamod")
local bin_path = path.join(_MAIN_SCRIPT_DIR, "bin", "Release")
local binaries = os.target() == "windows"
and { "AcceleratorCS2.dll", "AcceleratorCS2.pdb" }
or { "AcceleratorCS2.so" }
local function copy_file(source, destination)
if not os.isfile(source) then
error("MISSING PACKAGE FILE: " .. source)
end
local ok, err = os.copyfile(source, destination)
if not ok then
error(err)
end
end
os.mkdir(package_bin_path)
os.mkdir(package_metamod_path)
for _, binary in ipairs(binaries) do
copy_file(path.join(bin_path, binary), path.join(package_bin_path, binary))
end
copy_file(
path.join(_MAIN_SCRIPT_DIR, "package", "AcceleratorCS2.vdf"),
path.join(package_metamod_path, "AcceleratorCS2.vdf")
)
copy_file(
path.join(_MAIN_SCRIPT_DIR, "package", "config.json"),
path.join(package_bin_path, "config.json")
)
end
}
workspace "AcceleratorCS2"
configurations { "Debug", "Release" }
platforms {
"x64"
}
location "build"
filter "system:windows"
buildoptions { "/utf-8" }
filter "system:linux"
toolset "clang"
filter {}
include("premake/breakpad")
project "AcceleratorCS2"
kind "SharedLib"
language "C++"
targetdir "bin/%{cfg.buildcfg}"
location "build/AcceleratorCS2"
visibility "Hidden"
targetprefix ""
files { "*.h", "*.cpp" }
vpaths {
["Headers/*"] = "**.h",
["Sources/*"] = "**.cpp"
}
filter "configurations:Debug"
defines { "DEBUG" }
symbols "On"
filter "configurations:Release"
defines { "NDEBUG" }
optimize "On"
filter "system:windows"
cppdialect "c++20"
include("premake/mm-windows.lua")
filter "system:linux"
cppdialect "c++2a"
include("premake/mm-linux.lua")
links { "pthread", "z"}
linkoptions { '-static-libstdc++', '-static-libgcc' }
disablewarnings { "register" }
defines { "stricmp=strcasecmp", "_stricmp=strcasecmp", "_snprintf=snprintf", "_vsnprintf=vsnprintf" }
includedirs {
path.join(_MAIN_SCRIPT_DIR, "breakpad-config", "linux"),
}
files {
path.join(breakpadPath, "common", "dwarf_cfi_to_module.cc"),
path.join(breakpadPath, "common", "dwarf_cu_to_module.cc"),
path.join(breakpadPath, "common", "dwarf_line_to_module.cc"),
path.join(breakpadPath, "common", "dwarf_range_list_handler.cc"),
path.join(breakpadPath, "common", "language.cc"),
path.join(breakpadPath, "common", "module.cc"),
path.join(breakpadPath, "common", "path_helper.cc"),
path.join(breakpadPath, "common", "stabs_reader.cc"),
path.join(breakpadPath, "common", "stabs_to_module.cc"),
path.join(breakpadPath, "common", "dwarf", "bytereader.cc"),
path.join(breakpadPath, "common", "dwarf", "dwarf2diehandler.cc"),
path.join(breakpadPath, "common", "dwarf", "dwarf2reader.cc"),
path.join(breakpadPath, "common", "dwarf", "elf_reader.cc"),
path.join(breakpadPath, "common", "linux", "crc32.cc"),
path.join(breakpadPath, "common", "linux", "dump_symbols.cc"),
path.join(breakpadPath, "common", "linux", "elf_symbols_to_module.cc"),
path.join(breakpadPath, "common", "linux", "breakpad_getcontext.S")
}
filter {}
links {
"breakpad",
"breakpad-client",
"libdisasm"
}
defines { "META_IS_SOURCE2", "HAVE_CONFIG_H", "HAVE_STDINT_H", "_ITERATOR_DEBUG_LEVEL=0" }
vectorextensions "sse"
strictaliasing "Off"
multiprocessorcompile "On"
pic "On"
includedirs {
path.join("vendor", "breakpad", "src"),
path.join("vendor", "fmt", "include"),
}