Quick attempt at an xmake.lua build. Doesn't work.

This commit is contained in:
Zed A. Shaw 2024-08-01 07:01:04 -04:00
parent 09d8fe3c01
commit 93b181cdbc

12
xmake.lua Normal file
View file

@ -0,0 +1,12 @@
add_requires(
"efsw",
"fmt",
{configs = {cxflags = "-DFMT_HEADER_ONLY"}})
target("watchgit")
set_kind("binary")
add_files("watchgit.cpp")
set_languages("c++20")
add_packages(
"fmt",
"efsw")