test_fltk/xmake.lua

11 lines
216 B
Lua
Raw Normal View History

add_rules("mode.debug","mode.release")
add_requires("fltk")
2024-08-31 15:41:29 +00:00
if is_mode("release") and is_plat("windows")then
add_ldflags("-mwindows")
end
target("fltk")
add_files("src/*.cpp")
add_packages("fltk")