Blame view

FindRTS.cmake 270 Bytes
1b0b5c1d   dmayerich   first commit
1
2
  # Tries to find the RTS include directory

  

41ac9964   Sebastian Berisha   compiling ricalc
3
4
5
6
7
8
9
10
11
12
13
  include(FindPackageHandleStandardArgs)

  

  set(RTS_INCLUDE_DIR $ENV{RTS_PATH})

  

  find_package_handle_standard_args(RTS DEFAULT_MSG RTS_INCLUDE_DIR)

  

  if(RTS_FOUND)

      set(RTS_INCLUDE_DIRS ${RTS_INCLUDE_DIR})

  endif()