This fixes standalone when those libraries are installed elsewhere. Note that it "breaks" standalone if you just installed the prebuilt manually. For that to work you have to add /.../libraries/include to CMAKE_INCLUDE_PATH, which is not recommended because it would pick up any other prebuilt over your system installed libraries. Instead, for standalone, install the libraries somewhere with some prefix and then add that prefix to the environment variable CMAKE_PREFIX_PATH. For example, $prefix/include/collada and $prefix/lib/libcollada4dom.so
46 lines
918 B
CMake
46 lines
918 B
CMake
# -*- cmake -*-
|
|
|
|
include(Prebuilt)
|
|
|
|
set(COLLADADOM_FIND_QUIETLY OFF)
|
|
set(COLLADADOM_FIND_REQUIRED ON)
|
|
|
|
if (STANDALONE)
|
|
include (FindColladadom)
|
|
else (STANDALONE)
|
|
use_prebuilt_binary(colladadom)
|
|
|
|
if (NOT WINDOWS)
|
|
use_prebuilt_binary(pcre)
|
|
endif (NOT WINDOWS)
|
|
|
|
if (NOT DARWIN AND NOT WINDOWS)
|
|
use_prebuilt_binary(libxml)
|
|
endif (NOT DARWIN AND NOT WINDOWS)
|
|
|
|
set(COLLADADOM_INCLUDE_DIRS
|
|
${LIBS_PREBUILT_DIR}/${LL_ARCH_DIR}/include/collada
|
|
${LIBS_PREBUILT_DIR}/${LL_ARCH_DIR}/include/collada/1.4
|
|
)
|
|
|
|
if (WINDOWS)
|
|
set(COLLADADOM_LIBRARIES
|
|
debug libcollada14dom22-d
|
|
optimized libcollada14dom22
|
|
debug libboost_filesystem-mt-gd
|
|
optimized libboost_filesystem-mt
|
|
debug libboost_system-mt-gd
|
|
optimized libboost_system-mt
|
|
)
|
|
else (WINDOWS)
|
|
set(COLLADADOM_LIBRARIES
|
|
collada14dom
|
|
minizip
|
|
xml2
|
|
pcrecpp
|
|
pcre
|
|
)
|
|
endif (WINDOWS)
|
|
endif (STANDALONE)
|
|
|