Skip to content

Commit 0e2aae7

Browse files
committed
made the blocking component optionnal again
1 parent 9e51893 commit 0e2aae7

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

CMakeLists.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -421,8 +421,10 @@ set(LIB_GMDS_CAD GMDSCad)
421421
add_subdirectory(core/cad)
422422
set(LIB_GMDS_CADFAC GMDSCadFac)
423423
add_subdirectory(core/cadfac)
424-
set(LIB_GMDS_BLOCKING GMDSBlocking)
425-
add_subdirectory(core/blocking)
424+
if (ENABLE_BLOCKING)
425+
set(LIB_GMDS_BLOCKING GMDSBlocking)
426+
add_subdirectory(core/blocking)
427+
endif ()
426428
set(LIB_GMDS_SMOOTHY GMDSSmoothy)
427429
add_subdirectory(core/smoothy)
428430

0 commit comments

Comments
 (0)