Skip to content

Commit 42510aa

Browse files
committed
Fix CMake option syntax for CCD Query IO, filib, libigl, and scalable CCD recipes
1 parent f34250b commit 42510aa

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

cmake/recipes/ccd_query_io.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ include(ipc_toolkit_tests_data)
1111
include(CPM)
1212
CPMAddPackage(
1313
URI "gh:Continuous-Collision-Detection/CCD-Query-IO#36f6093af81a65acc27d9f05ad32d6b5729e8d15"
14-
OPTIONS "CCD_IO_DOWNLOAD_SAMPLE_QUERIES=ON"
15-
"CCD_IO_SAMPLE_QUERIES_DIR=${IPC_TOOLKIT_TESTS_DATA_DIR}/ccd-queries/"
14+
OPTIONS "CCD_IO_DOWNLOAD_SAMPLE_QUERIES ON"
15+
"CCD_IO_SAMPLE_QUERIES_DIR ${IPC_TOOLKIT_TESTS_DATA_DIR}/ccd-queries/"
1616
)

cmake/recipes/filib.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ include(CPM)
1515
CPMAddPackage("gh:zfergus/filib#7cf13519b0db72df2493c9c8997a8bef9e372848")
1616

1717
# Folder name for IDE
18-
set_target_properties(filib PROPERTIES FOLDER "ThirdParty")
18+
set_target_properties(filib PROPERTIES FOLDER "ThirdParty")

cmake/recipes/libigl.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ include(eigen)
1111
include(CPM)
1212
CPMAddPackage(
1313
URI "gh:libigl/libigl#89267b4a80b1904de3f6f2812a2053e5e9332b7e"
14-
OPTIONS "LIBIGL_PREDICATES=ON"
14+
OPTIONS "LIBIGL_PREDICATES ON"
1515
)
1616

1717
# Folder name for IDE

cmake/recipes/scalable_ccd.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ message(STATUS "Third-party: creating target 'scalable_ccd::scalable_ccd'")
99
include(CPM)
1010
CPMAddPackage(
1111
URI "gh:continuous-collision-detection/scalable-ccd#2c82b9ca43fba30b85f7e9aa83283464b1bb7843"
12-
OPTIONS "SCALABLE_CCD_WITH_CUDA=${IPC_TOOLKIT_WITH_CUDA}"
12+
OPTIONS "SCALABLE_CCD_WITH_CUDA ${IPC_TOOLKIT_WITH_CUDA}"
1313
)
1414

1515
# Folder name for IDE

0 commit comments

Comments
 (0)