13 lines
439 B
CMake
13 lines
439 B
CMake
# -*- cmake -*-
|
|
include(Prebuilt)
|
|
|
|
set(LLCONVEXDECOMP_INCLUDE_DIRS ${LIBS_PREBUILT_DIR}/include)
|
|
|
|
if (INSTALL_PROPRIETARY AND NOT STANDALONE)
|
|
use_prebuilt_binary(llconvexdecomposition)
|
|
set(LLCONVEXDECOMP_LIBRARY llconvexdecomposition)
|
|
else (INSTALL_PROPRIETARY AND NOT STANDALONE)
|
|
use_prebuilt_binary(llconvexdecompositionstub)
|
|
set(LLCONVEXDECOMP_LIBRARY llconvexdecompositionstub)
|
|
endif (INSTALL_PROPRIETARY AND NOT STANDALONE)
|