Skip to content

Commit fbe260c

Browse files
committed
Fix cmake build
Signed-off-by: falkTX <falktx@falktx.com>
1 parent d692999 commit fbe260c

2 files changed

Lines changed: 9 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
- uses: distrho/dpf-cmake-action@v1
2222
with:
2323
target: ${{ matrix.target }}
24+
suffix: -cmake
2425

2526
linux-make:
2627
strategy:
@@ -47,6 +48,7 @@ jobs:
4748
- uses: distrho/dpf-cmake-action@v1
4849
with:
4950
target: ${{ matrix.target }}
51+
suffix: -cmake
5052

5153
macos-make:
5254
strategy:
@@ -74,6 +76,7 @@ jobs:
7476
with:
7577
target: ${{ matrix.target }}
7678
pawpaw: true
79+
suffix: -cmake
7780

7881
windows-make:
7982
strategy:

plugins/Nekobi/CMakeLists.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,9 @@ target_include_directories(Nekobi
1313
.
1414
nekobee-src
1515
)
16+
17+
find_package(Threads)
18+
target_link_libraries(Nekobi
19+
PUBLIC
20+
${CMAKE_THREAD_LIBS_INIT}
21+
)

0 commit comments

Comments
 (0)