FindRTS.cmake 270 Bytes
# Tries to find the RTS include directory

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()