Advertisement
PowerSl1de

Untitled

Dec 1st, 2021
1,734
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CMake 0.25 KB | None | 0 0
  1. cmake_minimum_required(VERSION 3.16)
  2. project(CXXRestFullAPI VERSION 0.0.1)
  3.  
  4. find_package(Boost COMPONENTS unit_test_framework REQUIRED)
  5.  
  6. add_executable(Test test.cpp)
  7.  
  8. target_link_libraries(Test PROPERTIES
  9.         ${Boost_LIBRARIES}
  10.         )
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement