project-root.jam

来自「bias kalman滤波的C类库」· JAM 代码 · 共 23 行

JAM
23
字号
# Bayes++ project root - See Boost.build v2# Get Boost location from build systempath-constant BOOST : [ modules.peek : BOOST_ROOT ] ;# Build variant for full compiler optimizationvariant hardoptimize_release : release :  	<toolset>gcc <cflags>"-march=pentium3 -msse" <cxxflags>"-ftemplate-depth-1000 -fforce-mem -fomit-frame-pointer -foptimize-sibling-calls -finline-limit=2000" ;# Build variants for with mapped, compressed, and coordinate matricesvariant mapped_debug : debug : <define>BAYES_FILTER_MAPPED ;variant mapped_release : release : <define>BAYES_FILTER_MAPPED ;variant compressed_debug : debug : <define>BAYES_FILTER_COMPRESSED ;variant compressed_release : release : <define>BAYES_FILTER_COMPRESSED ;variant coordinate_debug : debug : <define>BAYES_FILTER_COORDINATE ;variant coordinate_release : release : <define>BAYES_FILTER_COORDINATE ; # Build variant for fast syntax checkingvariant syntax :  :  	<toolset>gcc <cflags>"-fsyntax-only" ; 	

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?