makefile

来自「Bayesian Filter.贝叶斯(Bayesian)滤波器的C++类库。包」· 代码 · 共 32 行

TXT
32
字号
# 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 + =
减小字号Ctrl + -
显示快捷键?