读好书,交益友
分类: C/C++
2018-03-14 16:44:26
find_package(Boost 1.57.0 COMPONENTS system filesystem REQUIRED) include_directories(${Boost_INCLUDE_DIRS}) add_executable(BoostTest main.cpp) target_link_libraries(BoostTest ${Boost_LIBRARIES})
cmake_minimum_required(VERSION 2.8.4) project(BoostTest) message(STATUS "start running cmake...") find_package(Boost 1.57.0 COMPONENTS system filesystem REQUIRED) if(Boost_FOUND) message(STATUS "Boost_INCLUDE_DIRS: ${Boost_INCLUDE_DIRS}") message(STATUS "Boost_LIBRARIES: ${Boost_LIBRARIES}") message(STATUS "Boost_VERSION: ${Boost_VERSION}") include_directories(${Boost_INCLUDE_DIRS}) endif() add_executable(BoostTest main.cpp) if(Boost_FOUND) target_link_libraries(BoostTest ${Boost_LIBRARIES}) endif()