generated from libxse/commonlibsse-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxmake.lua
More file actions
67 lines (56 loc) · 1.72 KB
/
xmake.lua
File metadata and controls
67 lines (56 loc) · 1.72 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
-- set minimum xmake version
set_xmakever("2.8.2")
-- includes
includes("lib/commonlibsse")
includes("extern/styyx-utils")
-- set project
set_project("sperg-helper")
set_version("1.0.0")
set_license("GPL-3.0")
-- set defaults
set_languages("c++23")
set_warnings("allextra")
-- add rules
add_rules("mode.debug", "mode.releasedbg")
add_rules("plugin.vsxmake.autoupdate")
-- set policies
set_policy("package.requires_lock", true)
-- set configs
set_config("skyrim_ae", true)
set_config("commonlib_toml", true)
set_config("commonlib_json", true)
-- targets
target("sperg-helper")
-- add dependencies to target
add_deps("commonlibsse")
add_deps("styyx-util")
-- add commonlibsse plugin
add_rules("commonlibsse.plugin", {
name = "sperg-helper",
author = "styyx",
})
-- add src files
add_files("src/**.cpp")
add_headerfiles("src/**.h")
add_includedirs("src")
set_pcxxheader("src/pch.h")
add_extrafiles("release/**.toml",{public = true, build = false})
after_build(function(target)
local copy = function(env, ext)
for _, env in pairs(env:split(";")) do
if os.exists(env) then
local plugins = path.join(env, ext, "SKSE/Plugins")
os.mkdir(plugins)
os.trycp(target:targetfile(), plugins)
os.trycp(target:symbolfile(), plugins)
-- Copy .ini files or other extras
os.trycp("$(projectdir)/contrib/**.toml", plugins)
end
end
end
if os.getenv("XSE_TES5_MODS_PATH") then
copy(os.getenv("XSE_TES5_MODS_PATH"), target:name())
elseif os.getenv("XSE_TES5_GAME_PATH") then
copy(os.getenv("XSE_TES5_GAME_PATH"), "Data")
end
end)