2020-08-25 16:05:56 +02:00
|
|
|
# === This file is part of Calamares - <https://calamares.io> ===
|
2018-05-07 14:41:01 +02:00
|
|
|
#
|
2020-08-26 00:24:52 +02:00
|
|
|
# SPDX-FileCopyrightText: 2018 Adriaan de Groot <groot@kde.org>
|
|
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
2018-05-07 14:41:01 +02:00
|
|
|
#
|
|
|
|
###
|
|
|
|
|
2020-08-27 13:59:23 +02:00
|
|
|
include( CalamaresAddTranslations )
|
|
|
|
|
2018-12-11 13:55:31 +01:00
|
|
|
find_package(Qt5 COMPONENTS Xml)
|
|
|
|
if( Qt5Xml_FOUND )
|
|
|
|
add_executable(txload txload.cpp)
|
|
|
|
target_link_libraries(txload Qt5::Xml)
|
|
|
|
endif()
|
2020-08-27 13:59:23 +02:00
|
|
|
|
|
|
|
install_calamares_gettext_translations( python
|
|
|
|
SOURCE_DIR ${CMAKE_SOURCE_DIR}/lang/python
|
|
|
|
FILENAME python.mo
|
|
|
|
RENAME calamares-python.mo
|
|
|
|
)
|