Skip to content

Commit

Permalink
[ci] Try to reenable addons on mingw clang
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Nov 20, 2024
1 parent f1c441e commit e5d662e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ci/mingw.deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
# lv2 suil lilv


if c++ --version | grep clang; then
# if c++ --version | grep clang; then
source ci/common.deps.sh
fi
#fi
6 changes: 4 additions & 2 deletions src/addons/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ endmacro()
subdirlist(SUBDIRS "${CMAKE_CURRENT_SOURCE_DIR}")
set(SCORE_ADDON True)
foreach(subdir ${SUBDIRS})
if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/${subdir}/CMakeLists.txt")
add_subdirectory("${subdir}")
if(NOT "${subdir}" IN_LIST SCORE_DISABLED_PLUGINS)
if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/${subdir}/CMakeLists.txt")
add_subdirectory("${subdir}")
endif()
endif()
endforeach()

0 comments on commit e5d662e

Please sign in to comment.