hikyuu2/hikyuu_cpp/unit_test/xmake.lua
2018-09-19 02:45:50 +08:00

44 lines
1022 B
Lua

option("with-unit-test")
set_default(false)
set_showmenu(true)
set_category("hikyuu")
set_description("Complie with unit-test")
option_end()
target("unit-test")
if has_config("with-unit-test") then
set_kind("binary")
else
set_kind("phony")
end
if is_plat("windows") then
add_cxflags("-wd4267")
add_cxflags("-wd4251")
add_cxflags("-wd4244")
add_cxflags("-wd4805")
else
add_cxflags("-Wno-unused-variable")
add_cxflags("-Wno-sign-compare")
end
if is_plat("windows") then
add_defines("HKU_API=__declspec(dllimport)")
end
add_defines("PY_VERSION_HEX=0x03000000")
add_defines("TEST_ALL_IN_ONE")
add_deps("hikyuu")
if is_plat("linux") or is_plat("macosx") then
add_links("boost_unit_test_framework")
--add_links("boost_system")
add_shflags("-Wl,-rpath=$ORIGIN", "-Wl,-rpath=$ORIGIN/../lib")
end
-- add files
add_files("**.cpp")
target_end()