Advertisement
Guest User

BGQ cmake

a guest
Feb 26th, 2019
106
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.  
  3. project(someproject)
  4.  
  5. if(${CMAKE_C_COMPILER_ID} STREQUAL XL)
  6.     set(BGQ ON)
  7.     add_compile_definitions(BGQ=1)
  8. else()
  9.     set(BGQ OFF)
  10.     add_compile_definitions(BGQ=0)
  11. endif()
  12.  
  13. add_executable(...)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement