blob: ae9dc3c17a91bcb0a0d9a65bba1ec87e08e45074 (
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)
set(LLCONVEXDECOMP_LIBRARY llconvexdecomposition)
else (WINDOWS)
set(LLCONVEXDECOMP_LIBRARY llconvexdecompositionstub)
endif (WINDOWS)
else (INSTALL_PROPRIETARY AND NOT STANDALONE)
use_prebuilt_binary(llconvexdecompositionstub)
set(LLCONVEXDECOMP_LIBRARY llconvexdecompositionstub)
endif (INSTALL_PROPRIETARY AND NOT STANDALONE)
|