Findassimp.cmake: add hint for include path's for Linux
By default, Linux distro installs assimp into /usr/include/assimp In case of this commit, fix hint path to include default path Signed-off-by: Maksym Sditanov <msditanov@200volts.com>pull/2699/head
parent
b8006cb4c9
commit
63a047119f
|
@ -54,8 +54,10 @@ else(WIN32)
|
||||||
|
|
||||||
find_path(
|
find_path(
|
||||||
assimp_INCLUDE_DIRS
|
assimp_INCLUDE_DIRS
|
||||||
NAMES postprocess.h scene.h version.h config.h cimport.h
|
NAMES assimp/postprocess.h assimp/scene.h assimp/version.h assimp/config.h assimp/cimport.h
|
||||||
PATHS /usr/local/include/
|
PATHS /usr/local/include
|
||||||
|
PATHS /usr/include/
|
||||||
|
|
||||||
)
|
)
|
||||||
|
|
||||||
find_library(
|
find_library(
|
||||||
|
|
Loading…
Reference in New Issue