mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-23 12:57:45 +00:00
Also start checking the available space before downloading patches to avoid really bad situations. This will be expanded in the future.
26 lines
686 B
CMake
26 lines
686 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-"
|
|
)
|