Skip to content

Commit

Permalink
[avnd] Follow same conventions for library types than other plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Nov 11, 2024
1 parent a649665 commit aec4d56
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions cmake/ScoreAvndHelper.cmake
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
function(avnd_score_plugin_init)
cmake_parse_arguments(AVND "" "BASE_TARGET" "" ${ARGN})
if(NOT TARGET ${AVND_BASE_TARGET})
if(SCORE_STATIC_PLUGINS)
add_library(${AVND_BASE_TARGET} STATIC)
else()
add_library(${AVND_BASE_TARGET} MODULE)
endif()
add_library(${AVND_BASE_TARGET})
endif()

set(AVND_ADDITIONAL_CLASSES "" PARENT_SCOPE)
Expand Down

0 comments on commit aec4d56

Please sign in to comment.