-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathxmake.lua
42 lines (33 loc) · 898 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
41
42
-- set minimum xmake version
set_xmakever("2.8.2")
-- includes
includes("lib/commonlibsse-ng")
-- set project
set_project("skse-no-console-spam")
set_version("1.1.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_vr", false)
-- targets
target("skse-no-console-spam")
-- add dependencies to target
add_deps("commonlibsse-ng")
-- add commonlibsse-ng plugin
add_rules("commonlibsse-ng.plugin", {
name = "no-console-spam",
author = "qudix",
description = "BEGONE CONSOLE SPAM!"
})
-- add src files
add_files("src/**.cpp")
add_headerfiles("src/**.h")
add_includedirs("src")
set_pcxxheader("src/pch.h")