jamfile.v2
来自「良好的代码实现」· V2 代码 · 共 20 行
V2
20 行
# Bayes++ Jamfile - See Boost.build v2# BayesFilter - The Bayesian filtering library# Propagated usage requirementsproject BayesFilter : usage-requirements <include>".." # Library headers are refered to as "BayesFilter/xxx.hpp";# Base names of the source files for BayesFilterCPP_SOURCES = bayesFlt bayesFltAlg matSup UdU covFlt infFlt infRtFlt itrFlt SIRFlt UDFlt unsFlt CIFlt ;# Declare the BayesFilter static link librarylib BayesFilter : $(CPP_SOURCES).cpp : <link>static <toolset>gcc:<cxxflags>"-Wall" <toolset>intel:<cxxflags>"-mp1" # Require IEEE NaN comparisons# <toolset>gcc:<cxxflags>"-pedantic" # Pedantic checks for validation with GCC (will include long long warnings);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?