blob: f310a493fdc8cfdf86f720a49c317ae9f664b6c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# -*- cmake -*-
include(Prebuilt)
set(LLCONVEXDECOMP_INCLUDE_DIRS ${LIBS_PREBUILT_DIR}/include)
if (INSTALL_PROPRIETARY AND NOT STANDALONE)
use_prebuilt_binary(llconvexdecomposition)
if (WINDOWS OR LINUX)
set(LLCONVEXDECOMP_LIBRARY llconvexdecomposition)
else (WINDOWS OR LINUX)
set(LLCONVEXDECOMP_LIBRARY llconvexdecompositionstub)
endif (WINDOWS OR LINUX)
else (INSTALL_PROPRIETARY AND NOT STANDALONE)
use_prebuilt_binary(llconvexdecompositionstub)
set(LLCONVEXDECOMP_LIBRARY llconvexdecompositionstub)
endif (INSTALL_PROPRIETARY AND NOT STANDALONE)
|