mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-08 01:30:13 +01:00
6 lines
241 B
CMake
6 lines
241 B
CMake
# 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})
|