mirror of
https://github.com/MCLx86/xtreemtest.git
synced 2024-11-25 03:32:14 +01:00
19 lines
626 B
CMake
19 lines
626 B
CMake
|
# Locate IrrlichtMt headers on system.
|
||
|
|
||
|
find_path(IRRLICHT_INCLUDE_DIR NAMES irrlicht.h
|
||
|
DOC "Path to the directory with IrrlichtMt includes"
|
||
|
PATHS
|
||
|
/usr/local/include/irrlichtmt
|
||
|
/usr/include/irrlichtmt
|
||
|
/system/develop/headers/irrlichtmt #Haiku
|
||
|
PATH_SUFFIXES "include/irrlichtmt"
|
||
|
)
|
||
|
|
||
|
# Handholding for users
|
||
|
if(IRRLICHT_INCLUDE_DIR AND (NOT IS_DIRECTORY "${IRRLICHT_INCLUDE_DIR}" OR
|
||
|
NOT EXISTS "${IRRLICHT_INCLUDE_DIR}/irrlicht.h"))
|
||
|
message(WARNING "IRRLICHT_INCLUDE_DIR was set to ${IRRLICHT_INCLUDE_DIR} "
|
||
|
"but irrlicht.h does not exist inside. The path will not be used.")
|
||
|
unset(IRRLICHT_INCLUDE_DIR CACHE)
|
||
|
endif()
|