diff options
author | rtk0c <[email protected]> | 2022-10-18 00:52:14 +0000 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-10-18 00:52:14 +0000 |
commit | 203ac6749164c574a8623f46e12d1c0e660004ba (patch) | |
tree | e36d790fdeb363c5979358c598392d1b00e5931a /demo-infinite-outliner/CMakeLists.txt | |
parent | 218b7d2ea426af976a275b9476714d3874828cf7 (diff) |
git-svn-id: file:///home/arch/svn/epistmool/trunk@14 71f44415-077c-4ad7-a976-72ddbf76608f
Diffstat (limited to 'demo-infinite-outliner/CMakeLists.txt')
-rw-r--r-- | demo-infinite-outliner/CMakeLists.txt | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/demo-infinite-outliner/CMakeLists.txt b/demo-infinite-outliner/CMakeLists.txt deleted file mode 100644 index 1d030c1..0000000 --- a/demo-infinite-outliner/CMakeLists.txt +++ /dev/null @@ -1,41 +0,0 @@ -cmake_minimum_required(VERSION 3.16) -project(DemoInfiniteOutliner VERSION 0.1 LANGUAGES CXX) - -set(CMAKE_AUTOMOC ON) -set(CMAKE_CXX_STANDARD 20) -set(CMAKE_CXX_STANDARD_REQUIRED ON) - -find_package(Qt6 6.2 COMPONENTS Quick Sql REQUIRED) - -file(GLOB_RECURSE appDemoInfiniteOutliner_SRC_HPP_FILES src/*.hpp) -file(GLOB_RECURSE appDemoInfiniteOutliner_SRC_CPP_FILES src/*.cpp) -qt_add_executable(appDemoInfiniteOutliner - ${appDemoInfiniteOutliner_SRC_HPP_FILES} - ${appDemoInfiniteOutliner_SRC_CPP_FILES} -) - -file(GLOB_RECURSE appDemoInfiniteOutliner_QML_FILES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} qml/*.qml) -qt_add_qml_module(appDemoInfiniteOutliner - URI QCplt - VERSION 1.0 - QML_FILES ${appDemoInfiniteOutliner_QML_FILES} -) - -set_target_properties(appDemoInfiniteOutliner PROPERTIES - MACOSX_BUNDLE_GUI_IDENTIFIER rtk0cium0001.github.io - MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION} - MACOSX_BUNDLE_SHORT_VERSION_STRING ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR} - MACOSX_BUNDLE TRUE - WIN32_EXECUTABLE TRUE -) - -target_include_directories(appDemoInfiniteOutliner PUBLIC src) -target_compile_definitions(appDemoInfiniteOutliner -PRIVATE - $<$<OR:$<CONFIG:Debug>,$<CONFIG:RelWithDebInfo>>:QT_QML_DEBUG> -) -target_link_libraries(appDemoInfiniteOutliner -PRIVATE - Qt6::Quick - Qt6::Sql -) |