Blame view

FindSTIM.cmake 221 Bytes
66c20862   pranathivemuri   external librarie...
1
2
3
4
5
6
7
8
9
  include(FindPackageHandleStandardArgs)
  
  set(STIM_INCLUDE_DIR $ENV{STIMLIB_PATH})
  
  find_package_handle_standard_args(STIM DEFAULT_MSG STIM_INCLUDE_DIR)
  
  if(STIM_FOUND)
      set(STIM_INCLUDE_DIRS ${STIM_INCLUDE_DIR})
  endif()