From 4d40bffe8109a68f06a1b42ccc57dfaa8d5ce011 Mon Sep 17 00:00:00 2001 From: Alexandru Croitor Date: Mon, 19 Aug 2019 13:36:57 +0200 Subject: Initial port to CMake Includes the main bits and also projects under src/linguist. Task-number: QTBUG-76002 Change-Id: I5fa9144c834f245ab85fc831c8e58afd8d02800e Reviewed-by: Simon Hausmann --- CMakeLists.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 CMakeLists.txt (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 000000000..2e3dc6af2 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,12 @@ +cmake_minimum_required(VERSION 3.15.0) + +project(QtTools + VERSION 6.0.0 + DESCRIPTION "Qt Tools" + HOMEPAGE_URL "https://qt.io/" + LANGUAGES CXX C +) + +find_package(Qt6 ${PROJECT_VERSION} CONFIG REQUIRED COMPONENTS BuildInternals Core + OPTIONAL_COMPONENTS Xml Widgets Quick QuickWidgets) +qt_build_repo() -- cgit v1.2.1