blob: 0f31c14c2bbbe96c0c61fae0778c6630e9616cd7 (
plain)
1
2
3
4
5
6
7
8
9
|
add_rules("mode.debug", "mode.release")
add_requires("libxmake")
target("xmake")
add_files("src/*.c")
if is_plat("windows") then
add_files("src/*.rc")
end
add_packages("libxmake")
|