hikyuu2/libs/hikyuu_utils/Jamfile
2015-01-07 01:26:14 +08:00

21 lines
663 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# USE_HKU_DLL_LIB、HKU_DLL_EXPORT只在Windows中生效
# 在只用FSD DLL库的客户程序中只需要定义USE_HKU_DLL_LIB
project : build-dir ../../build/hikyuu_utils
: usage-requirements <include>.
;
lib hikyuu_utils : [ glob-tree *.cpp ] : <toolset>gcc ;
lib hikyuu_utils : [ glob-tree *.cpp ] : <toolset>clang ;
lib hikyuu_utils : [ glob-tree *.cpp ]
: <toolset>msvc
<link>static
;
lib hikyuu_utils : [ glob-tree *.cpp ]
: <toolset>msvc
<link>shared
<define>HKU_API="__declspec(dllexport)"
;