Skip to content

Commit

Permalink
Fix missing c++20 standard on clap-plugins library
Browse files Browse the repository at this point in the history
  • Loading branch information
abique committed Apr 25, 2024
1 parent 0557fec commit 6a7124c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ target_link_libraries(clap-plugins-core PUBLIC clap-helpers)

add_library(clap-plugins MODULE clap-entry.cc)
target_link_libraries(clap-plugins PUBLIC clap-plugins-core)
set_target_properties(clap-plugins-core PROPERTIES CXX_STANDARD 20)
set_target_properties(clap-plugins PROPERTIES CXX_STANDARD 20)

if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
target_link_libraries(clap-plugins PRIVATE -Wl,--version-script=${CMAKE_CURRENT_SOURCE_DIR}/linux-clap-plugins.version)
Expand Down

0 comments on commit 6a7124c

Please sign in to comment.