forked from qt/qttranslations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
31 lines (24 loc) · 1 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause
# Generated from qttranslations.pro.
cmake_minimum_required(VERSION 3.16)
include(.cmake.conf)
project(QtTranslations # special case
VERSION "${QT_REPO_MODULE_VERSION}"
DESCRIPTION "Qt Translations" # special case
HOMEPAGE_URL "https://qt.io/"
LANGUAGES CXX C
)
# special case begin
# Make sure we use the fixed BASE argument of qt_add_resource.
set(QT_USE_FIXED_QT_ADD_RESOURCE_BASE TRUE)
set(QT_REPO_NOT_WARNINGS_CLEAN TRUE)
find_package(Qt6 ${PROJECT_VERSION} CONFIG REQUIRED COMPONENTS BuildInternals Core) # special case
find_package(Qt6 ${PROJECT_VERSION} QUIET CONFIG OPTIONAL_COMPONENTS Linguist) # special case
include(QtSetup) # for qt_install
if(TARGET ${QT_CMAKE_EXPORT_NAMESPACE}::lupdate AND TARGET ${QT_CMAKE_EXPORT_NAMESPACE}::lconvert)
add_subdirectory(translations)
else()
message(STATUS "Skipping adding translation custom targets due to missing lupdate or lconvert.")
endif()
# special case end