Browse Source

Fix cmake build

Signed-off-by: falkTX <falktx@falktx.com>
master
falkTX 7 months ago
parent
commit
fbe260c8c0
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
2 changed files with 9 additions and 0 deletions
  1. +3
    -0
      .github/workflows/build.yml
  2. +6
    -0
      plugins/Nekobi/CMakeLists.txt

+ 3
- 0
.github/workflows/build.yml View File

@@ -21,6 +21,7 @@ jobs:
- uses: distrho/dpf-cmake-action@v1
with:
target: ${{ matrix.target }}
suffix: -cmake

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

macos-make:
strategy:
@@ -74,6 +76,7 @@ jobs:
with:
target: ${{ matrix.target }}
pawpaw: true
suffix: -cmake

windows-make:
strategy:


+ 6
- 0
plugins/Nekobi/CMakeLists.txt View File

@@ -13,3 +13,9 @@ target_include_directories(Nekobi
.
nekobee-src
)

find_package(Threads)
target_link_libraries(Nekobi
PUBLIC
${CMAKE_THREAD_LIBS_INIT}
)

Loading…
Cancel
Save