forked from PuqiAR/Fig-TreeWalker
v0.3.1
This commit is contained in:
21
xmake.lua
Normal file
21
xmake.lua
Normal file
@@ -0,0 +1,21 @@
|
||||
add_rules("mode.debug", "mode.release")
|
||||
add_rules("plugin.compile_commands.autoupdate", {outputdir = ".vscode"})
|
||||
|
||||
set_policy("run.autobuild", false)
|
||||
|
||||
target("Fig")
|
||||
set_kind("binary")
|
||||
set_languages("c++2b")
|
||||
|
||||
set_plat("mingw")
|
||||
--set_toolchains("clang")
|
||||
|
||||
add_cxxflags("-static")
|
||||
add_cxxflags("-stdlib=libc++")
|
||||
|
||||
add_files("src/*.cpp")
|
||||
add_includedirs("include")
|
||||
|
||||
set_warnings("all")
|
||||
|
||||
add_defines("__FCORE_COMPILE_TIME=\"" .. os.date("%Y-%m-%d %H:%M:%S") .. "\"")
|
||||
Reference in New Issue
Block a user