18 lines
623 B
CMake
18 lines
623 B
CMake
|
|
# php-qml framework — Qt module (PhpQml.Bridge).
|
||
|
|
#
|
||
|
|
# Consumed by the application's top-level CMakeLists.txt
|
||
|
|
# (see framework/skeleton/qml/CMakeLists.txt) via add_subdirectory.
|
||
|
|
#
|
||
|
|
# Module sources arrive in:
|
||
|
|
# - Phase 1 sub-commit 4: BackendConnection, SingleInstance
|
||
|
|
# - Phase 1 sub-commit 5: MercureClient, RestClient (QML/JS)
|
||
|
|
#
|
||
|
|
# Until then this file is a placeholder so the directory is tracked in
|
||
|
|
# git and find_package picks up the right Qt before subsequent commits.
|
||
|
|
|
||
|
|
cmake_minimum_required(VERSION 3.21)
|
||
|
|
|
||
|
|
if(NOT TARGET Qt6::Core)
|
||
|
|
find_package(Qt6 6.5 REQUIRED COMPONENTS Core Gui Quick Qml Network)
|
||
|
|
endif()
|