Updating a few things.
This commit is contained in:
17
cmake_modules/FindIrrlicht.cmake
Normal file
17
cmake_modules/FindIrrlicht.cmake
Normal file
@ -0,0 +1,17 @@
|
||||
find_path(IRRLICHT_INCLUDE_DIR irrlicht/irrlicht.h
|
||||
PATHS ${IRRDIR}/include
|
||||
PATH_SUFFIXES irrlicht
|
||||
)
|
||||
|
||||
message(STATUS "IRRLICHT_INCLUDE_DIR = ${IRRLICHT_INCLUDE_DIR}")
|
||||
|
||||
find_library(IRRLICHT_LIBRARY NAMES libIrrlicht.so
|
||||
PATHS $ENV{IRRDIR}/lib
|
||||
)
|
||||
|
||||
|
||||
message(STATUS "IRRLICHT_LIBRARY = ${IRRLICHT_LIBRARY}")
|
||||
|
||||
if(IRRLICHT_INCLUDE_DIR AND IRRLICHT_LIBRARY)
|
||||
set(Irrlicht_FOUND true)
|
||||
endif(IRRLICHT_INCLUDE_DIR AND IRRLICHT_LIBRARY)
|
Reference in New Issue
Block a user