# Copyright David Abrahams 2006. Distributed under the Boost # Software License, Version 1.0. (See accompanying # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) # MSVC configuration #using gcc ; using msvc : 10.0 : : /wd4819 ; # Python configuration #using python : 2.6 : /usr ; using python : 3.5 ; # Specify the path to the Boost project. If you move this project, # adjust this path to refer to the Boost root directory. use-project boost # : /home/fasiondog/src/boost ; : d:\\src\\boost ; #指定boost头文件所在目录,根据需要进行修改 #BOOST_INCLUDE_DIR = /home/fasiondog/src/boost ; BOOST_INCLUDE_DIR = d:\\src\\boost ; #工程所在目录,根据需要修改 #HKU_DIR = /home/fasiondog/workspace/hikyuu ; #HKU_DIR = d:\\workspace\\hikyuu ; HKU_DIR = . ; #该变量不需要修改 HKU_INCLUDE_DIR = $(HKU_DIR)/libs ; use-project /hikyuu : $(HKU_DIR)/libs/hikyuu ; #use-project /fsd_galaxy_instance : $(FSD_DIR)/libs/galaxy_instance ; use-project /hikyuu_utils : $(HKU_DIR)/libs/hikyuu_utils ; use-project /sqlite3 : $(HKU_DIR)/extern-libs/sqlite3 ; # project : default-build release ; project : default-build release : requirements $(BOOST_INCLUDE_DIR) $(HKU_INCLUDE_DIR) # gcc:-std=c++0x # gcc:FSD_CPP_0X_SUPPORT gcc:-s msvc:-GS- #msvc:64 msvc:BOOST_ALL_DYN_LINK msvc:_CRT_SECURE_NO_DEPRECATE ; build-project libs/hikyuu_utils ; build-project libs/hikyuu ; build-project libs/hikyuu_python ; #build-project test ; build-project tools/importdata ;