mirror of
https://gitee.com/fasiondog/hikyuu.git
synced 2024-11-30 02:48:57 +08:00
update
This commit is contained in:
parent
aa387037f1
commit
97b873ac2c
1
.gitignore
vendored
1
.gitignore
vendored
@ -26,6 +26,7 @@
|
||||
.ipynb_checkpoints
|
||||
nohup.out
|
||||
temp
|
||||
tmp
|
||||
file
|
||||
temp.txt
|
||||
compile_info
|
||||
|
@ -1,5 +1,6 @@
|
||||
target("hkuserver")
|
||||
set_kind("binary")
|
||||
set_default(false)
|
||||
|
||||
add_packages("boost", "fmt", "spdlog", "flatbuffers", "nng", "nlohmann_json", "sqlite3", "zlib")
|
||||
add_deps("hikyuu")
|
||||
|
@ -3,10 +3,11 @@ add_requires("pybind11", {system = false, alias = "pybind11"})
|
||||
|
||||
target("core")
|
||||
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
|
||||
set_default(false)
|
||||
-- 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_options("stackstrace")
|
||||
|
||||
|
2
setup.py
2
setup.py
@ -118,7 +118,7 @@ def start_build(verbose=False, mode='release', feedback=True, worker_num=2):
|
||||
|
||||
py_version = current_compile_info['py_version']
|
||||
|
||||
# 如果 python版本或者编译模式发生变化,则编译依赖的 boost 库(boost.python)
|
||||
# 如果 python版本或者编译模式发生变化,则重新编译
|
||||
history_compile_info = get_history_compile_info()
|
||||
if py_version != history_compile_info[
|
||||
'py_version'] or history_compile_info['mode'] != mode:
|
||||
|
Loading…
Reference in New Issue
Block a user