1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-05-17 14:47:45 +00:00
astra/autotests/CMakeLists.txt
Joshua Goins 3d39887d9c Add function to encrypt steam tickets
I also added unit tests to verify this works exactly 1-to-1 to
XIVQuickLauncher's implementation. The next step is hooking up all of
our things together!
2025-05-04 15:27:10 -04:00

38 lines
968 B
CMake

# SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
# SPDX-License-Identifier: CC0-1.0
ecm_add_test(accountmanagertest.cpp
TEST_NAME accountmanagertest
LINK_LIBRARIES astra_static Qt::Test
NAME_PREFIX "astra-"
)
ecm_add_test(processwatchertest.cpp
TEST_NAME processwatchertest
LINK_LIBRARIES astra_static Qt::Test
NAME_PREFIX "astra-"
)
ecm_add_test(profilemanagertest.cpp
TEST_NAME profilemanagertest
LINK_LIBRARIES astra_static Qt::Test
NAME_PREFIX "astra-"
)
ecm_add_test(utilitytest.cpp
TEST_NAME utilitytest
LINK_LIBRARIES astra_static Qt::Test
NAME_PREFIX "astra-"
)
ecm_add_test(crtrandtest.cpp
TEST_NAME crtrandtest
LINK_LIBRARIES astra_static Qt::Test
NAME_PREFIX "astra-"
)
ecm_add_test(encryptedargtest.cpp
TEST_NAME encryptedargtest
LINK_LIBRARIES astra_static Qt::Test
NAME_PREFIX "astra-"
)