Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

faust: use default FAUSTFLOAT configuration if using faust from distro #1638

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions src/plugins/score-plugin-faust/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,13 @@ add_library(${PROJECT_NAME}
)

score_generate_command_list_file(${PROJECT_NAME} "${HDRS}")
target_compile_definitions(${PROJECT_NAME}
PUBLIC
FAUSTFLOAT=double
)

if(NOT "${FAUST_LIBRARIES}" MATCHES "/usr/l.*")
target_compile_definitions(${PROJECT_NAME}
PUBLIC
FAUSTFLOAT=double
)
endif()

target_link_libraries(${PROJECT_NAME} PUBLIC
score_plugin_media
Expand All @@ -68,7 +71,7 @@ ExternalProject_Add(
faustlibs
PREFIX ""
GIT_REPOSITORY https://github.com/grame-cncm/faustlibraries
GIT_TAG 730eff6dc336973553829235e0b31b24c47a2f69
GIT_TAG 5ee53574d0b910695b9ff3c534b9aa60f7a26d3d
CONFIGURE_COMMAND ""
BUILD_COMMAND ""
INSTALL_COMMAND ""
Expand Down
Loading