mirror of https://github.com/JAJames/jessilib.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
300 B
6 lines
300 B
# Include any compiler-specifc settings
|
|
if (EXISTS "${JESSILIB_ROOT}/build/${CMAKE_CXX_COMPILER_ID}")
|
|
include("${JESSILIB_ROOT}/build/${CMAKE_CXX_COMPILER_ID}/CMakeLists.txt")
|
|
else()
|
|
message(STATUS "No compiler-specific settings set; CMAKE_CXX_COMPILER_ID: ${CMAKE_CXX_COMPILER_ID}")
|
|
endif()
|
|
|