From e2050e50e8c31c919d4abf30051b778fd3cdd3be Mon Sep 17 00:00:00 2001 From: uncor3 Date: Tue, 23 Sep 2025 04:01:06 +0000 Subject: [PATCH] Fix subdirectory paths in CMakeLists.txt --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c2fc60e..2129408 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -142,8 +142,8 @@ file(GLOB PROJECT_SOURCES resources.qrc ) -add_subdirectory(src/core/airplay) -add_subdirectory(src/lib/ipatool-go) +add_subdirectory(lib/airplay) +add_subdirectory(lib/ipatool-go) find_package(Qt6 REQUIRED COMPONENTS Widgets)