📄 makefile
字号:
# Bayes++ Project Makefile## The BayesFilter library and examples as built using the Boost Build system.# The Boost build system provides a flexible and toolset independant replacment for make.# Bayes++ also uses several Boost template libraries. Therefore it is simple# to combine the build process for Bayes++, with the libraries it requires.## The Boost Build system uses the 'bjam' tool.# This Makefile just wraps up the bjam command for those used to make.# Use make ARGS='aa' to pass additional arguments to bjam# Modify this variable to locate bjamBJAM ?= bjamGOBJAM = $(BJAM) $(ARGS)# Build everythingbuildAll: $(GOBJAM)# Build individual examplesbuildSimple: $(GOBJAM) '<Simple>simple'buildPV: $(GOBJAM) '<PV>pv'buildQuadCalib: $(GOBJAM) '<QuadCalib>quadcalib'
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -