calamares/lang/CMakeLists.txt

13 lines
332 B
CMake
Raw Normal View History

2018-05-07 14:41:01 +02:00
# === This file is part of Calamares - <https://github.com/calamares> ===
#
# SPDX-FileCopyrightText: 2018 Adriaan de Groot <groot@kde.org>
# SPDX-License-Identifier: BSD-2-Clause
2018-05-07 14:41:01 +02:00
#
###
find_package(Qt5 COMPONENTS Xml)
if( Qt5Xml_FOUND )
add_executable(txload txload.cpp)
target_link_libraries(txload Qt5::Xml)
endif()