Advertisement
Guest User

Untitled

a guest
Jun 7th, 2014
407
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CMake 0.23 KB | None | 0 0
  1. cmake_minimum_required(VERSION 3.0)
  2. project(any)
  3.  
  4. find_package(Boost REQUIRED system)
  5. message("x: ${Boost_INCLUDE_DIR}")
  6. message("y: ${Boost_LIBRARIES}")
  7.  
  8. add_executable(foo foo.cpp)
  9. target_link_libraries(foo ${Boost_LIBRARIES})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement