From abeab75d9912153a2e661dffceff38278dd82a46 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Fri, 6 Oct 2023 18:10:01 -0400 Subject: [PATCH] Remove watchdog stuff from CMakeLists --- launcher/CMakeLists.txt | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/launcher/CMakeLists.txt b/launcher/CMakeLists.txt index e907fef..2b88110 100644 --- a/launcher/CMakeLists.txt +++ b/launcher/CMakeLists.txt @@ -105,24 +105,6 @@ target_link_libraries(astra PRIVATE QCoro::Network QCoro::Qml) -if (ENABLE_WATCHDOG) - target_sources(astra PRIVATE - include/gameparser.h - include/watchdog.h - - src/gameparser.cpp - src/watchdog.cpp) - target_link_libraries(astra PRIVATE - ${TESSERACT_LIBRARIES} - ${LEPTONICA_LIBRARIES} - X11 - Xcomposite - Xrender) - - target_include_directories(astra_core PRIVATE ${TESSERACT_INCLUDE_DIRS} ${LEPTONICA_INCLUDE_DIRS}) - target_compile_definitions(astra_core PRIVATE ENABLE_WATCHDOG) -endif () - if (BUILD_FLATPAK) target_compile_definitions(astra PRIVATE FLATPAK) endif ()