blob: 4553abb6b53fcc487496eb255067ff22d79ac75a (
plain)
1
2
3
4
5
6
7
8
9
|
# SPDX-FileCopyrightText: 2021 Carl Schwan <carlschwan@kde.org>
#
# SPDX-License-Identifier: BSD-3-Clause
set(quotest_SRCS quotest.cpp)
add_executable(quotest ${quotest_SRCS})
add_test(NAME quotest COMMAND quotest)
target_link_libraries(quotest PRIVATE Qt5::Core Qt5::Test ${PROJECT_NAME})
|