3rdparty/fusion: Always do build in release mode

this library has python numpy dependency in debug build
This commit is contained in:
DH 2025-02-24 07:09:23 +03:00 committed by Megamouse
parent 5084fb82b8
commit 26ce38a4ac

View File

@ -1 +1,5 @@
# To avoid python numpy dependency in debug build, force release build of this library
set(ORIG_BUILD_TYPE ${CMAKE_BUILD_TYPE})
set(CMAKE_BUILD_TYPE Release)
add_subdirectory(fusion EXCLUDE_FROM_ALL)
set(CMAKE_BUILD_TYPE ${ORIG_BUILD_TYPE})