libscanner/CMakeLists.txt add_library(scanner scanner.cpp) # 默认编译成静态库 # state that anybody linking to us needs to include the current source dir # to find MathFunctions.h, while we don't. target_include_directories(scanner INTERFACE ${CMAKE_CURRENT_SOURCE_DIR} ) #add_executable(Ma...
boostc++cmake Cmake cannot find Boost libraries 我是Cmake的新手,并增强了C ++中的库。 我...