mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-19 19:15:26 +00:00
5 lines
241 B
CMake
5 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})
|