aboutsummaryrefslogtreecommitdiffstats
path: root/src/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r--src/CMakeLists.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
new file mode 100644
index 0000000..23eea20
--- /dev/null
+++ b/src/CMakeLists.txt
@@ -0,0 +1,12 @@
+# Copyright (C) 2024 The Qt Company Ltd.
+# SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Qt-Commercial
+
+add_subdirectory(3rdparty/clap-rci)
+add_subdirectory(clapinterface)
+
+find_package(Qt6 ${QT_MIN_VERSION} COMPONENTS Quick)
+if (Qt6Quick_FOUND)
+ message(STATUS "Adding clapcontrols")
+ include_directories(${CMAKE_CURRENT_SOURCE_DIR}/3rdparty/toml11)
+ add_subdirectory(clapcontrols)
+endif()