diff options
| author | deeedob <dennis.ob@protonmail.com> | 2024-04-04 13:02:41 +0200 |
|---|---|---|
| committer | deeedob <dennis.ob@protonmail.com> | 2024-04-04 14:13:12 +0200 |
| commit | 516c788d451c7c5d3d1fd3eb04171e21e7026628 (patch) | |
| tree | 8cf6b0d26f7eb260fc53ac39006c6e7ab688a802 /examples/CMakeLists.txt | |
Create Qt user interfaces for the CLAP audio plugin standard.
Import the repository to continue development on it. This version is the
proof-of-concept implementation, as highlighted in my thesis. It is
feature incomplete but already preserves this initial work whilst a
rewrite is on its way.
Diffstat (limited to 'examples/CMakeLists.txt')
| -rw-r--r-- | examples/CMakeLists.txt | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt new file mode 100644 index 0000000..0e48ab3 --- /dev/null +++ b/examples/CMakeLists.txt @@ -0,0 +1,31 @@ +# Copyright (C) 2024 The Qt Company Ltd. +# SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Qt-Commercial + +cmake_minimum_required(VERSION 3.16) + +project(QtClapPlugins + VERSION 0.1 + LANGUAGES CXX +) + +set(CMAKE_CXX_STANDARD 20) +set(CMAKE_CXX_STANDARD_REQUIRED ON) + +include(../cmake/autolink_clap.cmake) + +set(target ${PROJECT_NAME}) +add_library(${target} SHARED + clap_entry.cpp + reveal/revealprocessor.h + reveal/revealprocessor.cpp + gain/gainprocessor.cpp + gain/gainprocessor.h +) + +target_link_libraries(${target} PRIVATE clap-rci) +create_symlink_target_clap(${target}) +add_dependencies(create_symlink_${target} ${target}) + +# Add GUIs +add_subdirectory(reveal/gui) +add_subdirectory(gain/gui) |
