-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathxmake.lua
More file actions
27 lines (23 loc) · 681 Bytes
/
xmake.lua
File metadata and controls
27 lines (23 loc) · 681 Bytes
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
-- include subprojects
includes("lib/commonlibsse")
-- set project constants
set_project("commonlibsse-template")
set_version("0.0.0")
set_license("GPL-3.0")
set_languages("c++23")
set_warnings("allextra")
-- add common rules
add_rules("mode.debug", "mode.releasedbg")
add_rules("plugin.vsxmake.autoupdate")
-- define targets
target("commonlibsse-template")
add_rules("commonlibsse.plugin", {
name = "commonlibsse-template",
author = "libxse",
description = "SKSE64 plugin template using CommonLibSSE"
})
-- add src files
add_files("src/**.cpp")
add_headerfiles("src/**.h")
add_includedirs("src")
set_pcxxheader("src/pch.h")