1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-20 11:47:46 +00:00

Move autotests directory to repository root

This commit is contained in:
Joshua Goins 2023-12-17 10:16:21 -05:00
parent 778ddc8ec6
commit 349cf42902
4 changed files with 4 additions and 4 deletions

View file

@ -70,6 +70,10 @@ find_package(QuaZip-Qt6 REQUIRED)
add_subdirectory(external) add_subdirectory(external)
add_subdirectory(launcher) add_subdirectory(launcher)
if (BUILD_TESTING)
add_subdirectory(autotests)
endif()
install(FILES zone.xiv.astra.desktop DESTINATION ${KDE_INSTALL_APPDIR}) install(FILES zone.xiv.astra.desktop DESTINATION ${KDE_INSTALL_APPDIR})
install(FILES zone.xiv.astra.appdata.xml DESTINATION ${KDE_INSTALL_METAINFODIR}) install(FILES zone.xiv.astra.appdata.xml DESTINATION ${KDE_INSTALL_METAINFODIR})
install(FILES zone.xiv.astra.svg DESTINATION ${KDE_INSTALL_FULL_ICONDIR}/hicolor/scalable/apps) install(FILES zone.xiv.astra.svg DESTINATION ${KDE_INSTALL_FULL_ICONDIR}/hicolor/scalable/apps)

View file

@ -176,7 +176,3 @@ if (WIN32)
COMMAND "${WINDEPLOYQT_ENV_SETUP}" && "${WINDEPLOYQT_EXECUTABLE}" \"$<TARGET_FILE:astra>\" COMMAND "${WINDEPLOYQT_ENV_SETUP}" && "${WINDEPLOYQT_EXECUTABLE}" \"$<TARGET_FILE:astra>\"
) )
endif () endif ()
if (BUILD_TESTING)
add_subdirectory(autotests)
endif()