Browse Source

Cleanup cmake stuff

Signed-off-by: falkTX <falktx@falktx.com>
master
falkTX 5 months ago
parent
commit
70305b16a1
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
3 changed files with 17 additions and 11 deletions
  1. +5
    -2
      CMakeLists.txt
  2. +1
    -1
      dpf
  3. +11
    -8
      plugins/Nekobi/CMakeLists.txt

+ 5
- 2
CMakeLists.txt View File

@@ -1,3 +1,6 @@
cmake_minimum_required(VERSION 3.11)
cmake_minimum_required(VERSION 3.7)

project(Nekobi)

add_subdirectory(dpf)
add_subdirectory(plugins/Nekobi)
add_subdirectory(plugins/Nekobi)

+ 1
- 1
dpf

@@ -1 +1 @@
Subproject commit 5b7670584d16e76a27cf0d6575b8bf9921de2714
Subproject commit e288f163bbf3af6ae24e9df6cdd23e755ff1aaf5

+ 11
- 8
plugins/Nekobi/CMakeLists.txt View File

@@ -1,12 +1,15 @@
DPF_ADD_PLUGIN(Nekobi
TARGETS vst2
dpf_add_plugin(Nekobi
TARGETS
clap dssi lv2 vst2 vst3
FILES_DSP
DistrhoPluginNekobi.cpp
DistrhoPluginNekobi.cpp
FILES_UI
DistrhoArtworkNekobi.cpp
DistrhoUINekobi.cpp)
DistrhoArtworkNekobi.cpp
DistrhoUINekobi.cpp
)

target_include_directories(Nekobi PUBLIC
"."
"nekobee-src"
target_include_directories(Nekobi
PUBLIC
.
nekobee-src
)

Loading…
Cancel
Save