Make a variable SFIZZ_NUM_CCS available to cmake

This commit is contained in:
Jean Pierre Cimalando 2021-04-04 15:58:25 +02:00
parent c0b142af8f
commit bc872997ff
2 changed files with 11 additions and 0 deletions

View file

@ -39,6 +39,9 @@ option_ex (SFIZZ_USE_SYSTEM_SIMDE "Use SIMDe libraries preinstalled on system"
option_ex (SFIZZ_STATIC_DEPENDENCIES "Link dependencies statically" OFF)
option_ex (SFIZZ_RELEASE_ASSERTS "Forced assertions in release builds" OFF)
# The fixed number of controller parameters
set(SFIZZ_NUM_CCS 512)
include (SfizzConfig)
include (SfizzDeps)
include (SfizzFaust)

View file

@ -300,6 +300,14 @@ if(SFIZZ_RELEASE_ASSERTS)
endif()
sfizz_enable_fast_math(sfizz_internal)
# Check that sfizz and cmake-side definitions are matching
file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/sfizz_match_definitions.cpp" "
#include \"Config.h\"
static_assert(sfz::config::numCCs == ${SFIZZ_NUM_CCS}, \"SFIZZ_NUM_CCS did not match\");
")
add_library(sfizz_match_definitions STATIC "${CMAKE_CURRENT_BINARY_DIR}/sfizz_match_definitions.cpp")
target_link_libraries(sfizz_match_definitions PRIVATE sfizz::internal)
# Sfizz static library
add_library(sfizz_static STATIC sfizz/sfizz_wrapper.cpp sfizz/sfizz.cpp sfizz/sfizz_private.hpp)
add_library(sfizz::static ALIAS sfizz_static)