You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
686 B
CMake
26 lines
686 B
CMake
9 years ago
|
FIND_PATH(
|
||
|
assimp_INCLUDE_DIRS
|
||
|
NAMES assimp/postprocess.h assimp/scene.h assimp/version.h assimp/config.h assimp/cimport.h
|
||
|
PATHS /usr/local/include/
|
||
|
)
|
||
|
|
||
|
FIND_LIBRARY(
|
||
|
assimp_LIBRARIES
|
||
|
NAMES assimp
|
||
|
PATHS /usr/local/lib/
|
||
|
)
|
||
|
|
||
|
IF (assimp_INCLUDE_DIRS AND assimp_LIBRARIES)
|
||
|
SET(assimp_FOUND TRUE)
|
||
|
ENDIF (assimp_INCLUDE_DIRS AND assimp_LIBRARIES)
|
||
|
|
||
|
IF (assimp_FOUND)
|
||
|
IF (NOT assimp_FIND_QUIETLY)
|
||
|
MESSAGE(STATUS "Found asset importer library: ${assimp_LIBRARIES}")
|
||
|
ENDIF (NOT assimp_FIND_QUIETLY)
|
||
|
ELSE (assimp_FOUND)
|
||
|
IF (assimp_FIND_REQUIRED)
|
||
|
MESSAGE(FATAL_ERROR "Could not find asset importer library")
|
||
|
ENDIF (assimp_FIND_REQUIRED)
|
||
|
ENDIF (assimp_FOUND)
|