hikyuu2/hikyuu_pywrap/xmake.lua

147 lines
6.9 KiB
Lua
Raw Normal View History

2018-09-20 02:43:03 +08:00
option("boost-python-suffix")
2018-09-09 16:43:04 +08:00
set_default("3X")
set_showmenu(true)
set_category("hikyuu")
set_description("Set suffix of libboost_python. ",
"Boost.python 1.67 later use 3x like libboost_python35, ",
"but older is libboost_python3",
" - 3X autocheck for 35, 36, 37, 3x")
option_end()
2019-06-04 23:13:32 +08:00
add_includedirs("../hikyuu_cpp")
2019-10-19 22:25:06 +08:00
-- Can't use static boost.python lib, the function that using 'arg' will load failed!
--add_defines("BOOST_PYTHON_STATIC_LIB")
if is_plat("windows") then
add_defines("HKU_API=__declspec(dllimport)")
add_cxflags("-wd4566")
end
2018-09-15 02:52:35 +08:00
local cc = get_config("cc")
local cxx = get_config("cxx")
if (cc and string.find(cc, "clang")) or (cxx and string.find(cxx, "clang")) then
2019-08-17 15:22:55 +08:00
add_cxflags("-Wno-error=parentheses-equality -Wno-error=missing-braces")
2018-09-15 02:52:35 +08:00
end
2020-06-25 15:59:37 +08:00
--on_load("xmake_on_load")
2018-09-15 02:52:35 +08:00
2020-06-25 15:59:37 +08:00
target("core")
2020-04-08 00:24:12 +08:00
set_kind("shared")
if is_mode("debug") then
set_default(false) --会默认禁用这个target的编译除非显示指定xmake build _hikyuu才会去编译但是target还存在里面的files会保留到vcproj
--set_enable(false) --set_enable(false)会彻底禁用这个target连target的meta也不会被加载vcproj不会保留它
end
add_packages("fmt", "spdlog")
2018-09-09 16:43:04 +08:00
add_deps("hikyuu")
if is_plat("windows") then
2020-06-25 15:59:37 +08:00
set_filename("core.pyd")
2020-08-01 18:52:56 +08:00
add_cxflags("-wd4251")
2018-09-21 01:08:43 +08:00
else
2020-06-25 15:59:37 +08:00
set_filename("core.so")
end
2020-06-25 15:59:37 +08:00
add_files("./**.cpp")
2018-09-09 16:43:04 +08:00
2020-06-25 15:59:37 +08:00
add_rpathdirs("$ORIGIN", "$ORIGIN/lib", "$ORIGIN/../lib")
on_load(function(target)
import("lib.detect.find_tool")
if is_plat("windows") then
-- detect installed python3
local python = assert(find_tool("python", {version = true}), "python not found, please install it first! note: python version must > 3.0")
assert(python.version > "3", python.version .. " python version must > 3.0, please use python3.0 or later!")
-- find python include and libs directory
local pydir = os.iorun("python -c \"import sys; print(sys.executable)\"")
pydir = path.directory(pydir)
target:add("includedirs", pydir .. "/include")
target:add("linkdirs", pydir .. "/libs")
return
end
if is_plat("macosx") then
local libdir = os.iorun("python3-config --prefix"):trim() .. "/lib"
target:add("linkdirs", libdir)
local out, err = os.iorun("python3 --version")
local ver = (out .. err):trim()
2020-08-15 00:24:35 +08:00
--local python_lib = format("python%s.%sm", string.sub(ver,8,8), string.sub(ver,10,10))
local python_lib = format("python%s.%s", string.sub(ver,8,8), string.sub(ver,10,10))
2020-06-25 15:59:37 +08:00
target:add("links", python_lib)
end
-- get python include directory.
local pydir = try { function () return os.iorun("python3-config --includes"):trim() end }
assert(pydir, "python3-config not found!")
target:add("cxflags", pydir)
-- get suffix configure for link libboost_pythonX.so
local suffix = get_config("boost-python-suffix")
if suffix == nil then
raise("You need to config --boost-python-suffix specify libboost_python suffix")
end
suffix = string.upper(suffix)
if suffix == "3X" then
local out, err = os.iorun("python3 --version")
local ver = (out .. err):trim()
local boost_python_lib = "boost_python"..string.sub(ver,8,8)..string.sub(ver,10,10)
target:add("links", boost_python_lib)
else
target:add("links", "boost_python"..suffix)
end
end)
after_build(function(target)
2020-08-15 00:24:35 +08:00
if is_plat("macosx") then
local out, err = os.iorun("python3 --version")
local ver = (out .. err):trim()
local boost_python_lib = format("libboost_python%s%s.dylib", string.sub(ver,8,8), string.sub(ver,10,10))
os.run(format("install_name_tool -change @rpath/libhikyuu.dylib @loader_path/libhikyuu.dylib %s/%s", target:targetdir(), "core.so"))
--os.run(format("install_name_tool -change @rpath/libboost_date_time.dylib @loader_path/libboost_date_time.dylib %s/%s", target:targetdir(), "core.so"))
--os.run(format("install_name_tool -change @rpath/libboost_filesystem.dylib @loader_path/libboost_filesystem.dylib %s/%s", target:targetdir(), "core.so"))
--os.run(format("install_name_tool -change @rpath/libboost_system.dylib @loader_path/libboost_system.dylib %s/%s", target:targetdir(), "core.so"))
2020-08-15 00:24:35 +08:00
os.run(format("install_name_tool -change @rpath/libboost_serialization.dylib @loader_path/libboost_serialization.dylib %s/%s", target:targetdir(), "core.so"))
os.run(format("install_name_tool -change @rpath/%s @loader_path/%s %s/%s", boost_python_lib, boost_python_lib, target:targetdir(), "core.so"))
end
2020-06-25 15:59:37 +08:00
local dst_dir = "$(projectdir)/hikyuu/cpp/"
2020-09-14 00:18:57 +08:00
if is_plat("windows") then
os.cp(target:targetdir() .. '/core.pyd', dst_dir)
os.cp(target:targetdir() .. '/hikyuu.dll', dst_dir)
2020-11-03 22:32:57 +08:00
os.cp(target:targetdir() .. '/sqlite3.dll', dst_dir)
2020-09-14 00:18:57 +08:00
elseif is_plat("macosx") then
os.cp(target:targetdir() .. '/core.so', dst_dir)
2020-09-30 21:57:15 +08:00
os.cp(target:targetdir() .. '/libhikyuu.dylib', dst_dir)
2020-09-14 00:18:57 +08:00
else
os.cp(target:targetdir() .. '/core.so', dst_dir)
2020-09-28 17:17:37 +08:00
os.cp(target:targetdir() .. '/libhikyuu.so', dst_dir)
2020-09-14 00:18:57 +08:00
end
2020-06-25 15:59:37 +08:00
--os.cp("$(env BOOST_LIB)/boost_date_time*.dll", dst_dir)
--os.cp("$(env BOOST_LIB)/boost_filesystem*.dll", dst_dir)
2020-06-25 15:59:37 +08:00
os.cp("$(env BOOST_LIB)/boost_python3*.dll", dst_dir)
os.cp("$(env BOOST_LIB)/boost_serialization*.dll", dst_dir)
--os.cp("$(env BOOST_LIB)/boost_system*.dll", dst_dir)
--os.cp("$(env BOOST_LIB)/libboost_date_time*.so.*", dst_dir)
--os.cp("$(env BOOST_LIB)/libboost_filesystem*.so.*", dst_dir)
2020-06-25 15:59:37 +08:00
os.cp("$(env BOOST_LIB)/libboost_python3*.so.*", dst_dir)
os.cp("$(env BOOST_LIB)/libboost_serialization*.so.*", dst_dir)
--os.cp("$(env BOOST_LIB)/libboost_system*.so.*", dst_dir)
--os.cp("$(env BOOST_LIB)/libboost_date_time*.dylib", dst_dir)
--os.cp("$(env BOOST_LIB)/libboost_filesystem*.dylib", dst_dir)
2020-06-25 15:59:37 +08:00
os.cp("$(env BOOST_LIB)/libboost_python3*.dylib", dst_dir)
os.cp("$(env BOOST_LIB)/libboost_serialization*.dylib", dst_dir)
--os.cp("$(env BOOST_LIB)/libboost_system*.dylib", dst_dir)
2020-06-25 15:59:37 +08:00
if is_plat("windows") then
if is_mode("release") then
os.cp("$(projectdir)/hikyuu_extern_libs/pkg/hdf5.pkg/lib/$(mode)/$(plat)/$(arch)/*.dll", dst_dir)
else
os.cp("$(projectdir)/hikyuu_extern_libs/pkg/hdf5_D.pkg/lib/$(mode)/$(plat)/$(arch)/*.dll", dst_dir)
end
os.cp("$(projectdir)/hikyuu_extern_libs/pkg/mysql.pkg/lib/$(mode)/$(plat)/$(arch)/*.dll", dst_dir)
end
end)
2018-09-09 16:43:04 +08:00