-
Notifications
You must be signed in to change notification settings - Fork 1
/
xmake.lua
40 lines (32 loc) · 903 Bytes
/
xmake.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
-- set minimum xmake version
set_xmakever("2.8.2")
-- includes
includes("lib/commonlibsf")
-- set project
set_project("commonlibsf-template")
set_version("0.0.0")
set_license("GPL-3.0")
-- set defaults
set_languages("c++23")
set_warnings("allextra")
-- set policies
set_policy("package.requires_lock", true)
-- add rules
add_rules("mode.debug", "mode.releasedbg")
add_rules("plugin.vsxmake.autoupdate")
-- setup targets
target("commonlibsf-template")
-- add dependencies to target
add_deps("commonlibsf")
-- add commonlibsf plugin
add_rules("commonlibsf.plugin", {
name = "commonlibsf-template",
author = "Author Name",
description = "SFSE plugin template using CommonLibSF",
email = "[email protected]"
})
-- add src files
add_files("src/**.cpp")
add_headerfiles("src/**.h")
add_includedirs("src")
set_pcxxheader("src/pch.h")