2018-10-08 22:27:19 +02:00
|
|
|
# This file is part of the Flowee project
|
2022-12-11 20:05:46 +01:00
|
|
|
# Copyright (C) 2018-2022 Tom Zander <tom@flowee.org>
|
2018-10-08 22:27:19 +02:00
|
|
|
#
|
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
#
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
#
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
2018-12-15 21:33:44 +01:00
|
|
|
project (streaming)
|
2018-10-08 22:27:19 +02:00
|
|
|
include (testlib)
|
|
|
|
|
|
2022-12-11 20:05:46 +01:00
|
|
|
set (SOURCES
|
2018-12-15 21:33:44 +01:00
|
|
|
TestBuffers.cpp
|
|
|
|
|
serialize_tests.cpp
|
|
|
|
|
streams_tests.cpp
|
2020-07-05 12:24:26 +02:00
|
|
|
Encoders.cpp
|
2018-12-15 21:33:44 +01:00
|
|
|
main.cpp
|
|
|
|
|
)
|
2022-12-11 20:05:46 +01:00
|
|
|
qt6_add_resources(SOURCES data/data.qrc)
|
|
|
|
|
|
|
|
|
|
add_executable(test_streaming ${SOURCES})
|
|
|
|
|
|
|
|
|
|
target_link_libraries(test_streaming PRIVATE
|
2018-10-08 22:27:19 +02:00
|
|
|
flowee_testlib
|
2020-03-19 16:08:56 +01:00
|
|
|
flowee_utils
|
2025-03-07 15:36:36 +01:00
|
|
|
Boost::filesystem
|
2018-10-08 22:27:19 +02:00
|
|
|
)
|
2022-04-06 11:46:40 +02:00
|
|
|
add_test(NAME FLOWEE_test_streaming COMMAND test_streaming)
|