Advertisement
Guest User

Untitled

a guest
Oct 15th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CMake 0.26 KB | None | 0 0
  1. cmake_minimum_required(VERSION 3.8)
  2.  
  3. file(WRITE test.cpp [[
  4.     int main() {}
  5. ]])
  6.  
  7. try_compile(result
  8.     ${CMAKE_BINARY_DIR}
  9.     ${CMAKE_SOURCE_DIR}/test.cpp
  10.     COMPILE_DEFINITIONS -DFOO=2 -DBAR=3
  11.     CXX_STANDARD 11
  12. )
  13.  
  14. message("result: ${result}")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement