aboutsummaryrefslogtreecommitdiffstats
path: root/examples/geniviextras
diff options
context:
space:
mode:
Diffstat (limited to 'examples/geniviextras')
-rw-r--r--examples/geniviextras/CMakeLists.txt3
-rw-r--r--examples/geniviextras/qdlt/CMakeLists.txt37
2 files changed, 40 insertions, 0 deletions
diff --git a/examples/geniviextras/CMakeLists.txt b/examples/geniviextras/CMakeLists.txt
new file mode 100644
index 0000000..fd7c832
--- /dev/null
+++ b/examples/geniviextras/CMakeLists.txt
@@ -0,0 +1,3 @@
+# Generated from geniviextras.pro.
+
+add_subdirectory(qdlt)
diff --git a/examples/geniviextras/qdlt/CMakeLists.txt b/examples/geniviextras/qdlt/CMakeLists.txt
new file mode 100644
index 0000000..d5874e6
--- /dev/null
+++ b/examples/geniviextras/qdlt/CMakeLists.txt
@@ -0,0 +1,37 @@
+# Generated from qdlt.pro.
+
+cmake_minimum_required(VERSION 3.14)
+project(qdlt LANGUAGES CXX)
+
+set(CMAKE_INCLUDE_CURRENT_DIR ON)
+
+set(CMAKE_AUTOMOC ON)
+set(CMAKE_AUTORCC ON)
+set(CMAKE_AUTOUIC ON)
+
+if(NOT DEFINED INSTALL_EXAMPLESDIR)
+ set(INSTALL_EXAMPLESDIR "examples")
+endif()
+
+set(INSTALL_EXAMPLEDIR "${INSTALL_EXAMPLESDIR}/geniviextras/qdlt")
+
+find_package(Qt6 COMPONENTS Core)
+
+qt_add_executable(qdlt
+ loggingcategories.cpp loggingcategories.h
+ main.cpp
+)
+set_target_properties(qdlt PROPERTIES
+ WIN32_EXECUTABLE FALSE
+ MACOSX_BUNDLE FALSE
+)
+target_link_libraries(qdlt PUBLIC
+ Qt::Core
+ geniviextras
+)
+
+install(TARGETS qdlt
+ RUNTIME DESTINATION "${INSTALL_EXAMPLEDIR}"
+ BUNDLE DESTINATION "${INSTALL_EXAMPLEDIR}"
+ LIBRARY DESTINATION "${INSTALL_EXAMPLEDIR}"
+)