bdfz_2024_summer/xmake.lua

22 lines
433 B
Lua
Raw Normal View History

2024-08-07 15:40:31 +00:00
add_rules("mode.release","mode.debug")
2024-08-08 01:13:42 +00:00
if is_mode("debug")then
add_cxxflags("-DOIPRINT")
end
2024-08-07 15:40:31 +00:00
target("st_raw")
set_kind("binary")
add_files("day5/RMQ/st_raw.cpp")
2024-08-07 16:14:36 +00:00
set_rundir("./day5/RMQ")
target("st_done")
set_kind("binary")
add_files("./day5/RMQ/st_done.cpp")
target("test")
set_kind("binary")
2024-08-08 01:13:42 +00:00
add_files("test.cpp")
target("P3865")
set_kind("binary")
add_files("./day6/P3865/*.cpp")