Skip to content

Commit

Permalink
fix: xmake.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
ThirdEyeSqueegee committed Jul 23, 2024
1 parent e35a6eb commit 149e2c2
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions xmake.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
set_xmakever("2.8.2")

-- set project
set_project("commonlibsf")
set_arch("x64")
set_languages("c++23")
set_optimize("faster")
set_warnings("allextra")
set_encodings("utf-8")

-- add rules
add_rules("mode.debug", "mode.release")

-- require packages
add_requires("xbyak")
add_requires("spdlog", { configs = { header_only = false, std_format = true } })

-- make extras available
includes("xmake-extra.lua")

Expand Down

0 comments on commit 149e2c2

Please sign in to comment.