From c0655fbc6f4ee3bc3de6c6b17050e8997446a763 Mon Sep 17 00:00:00 2001 From: BagelSketches Date: Thu, 3 Jul 2025 16:57:37 +1000 Subject: [PATCH] fixed missing endif in CMakeLists --- CMakeLists.txt | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index cfa3c63e..44e50992 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -668,17 +668,14 @@ if(NINTENDO_3DS) ICON "ISLE/res/3ds/isle.png" ) -if(WIN32){ - install(DIRECTORY "$/QTLibs" DESTINATION "${CMAKE_INSTALL_BINDIR}") -} - ctr_create_3dsx(isle SMDH isle.smdh) install(FILES "$/isle.3dsx" DESTINATION "${CMAKE_INSTALL_BINDIR}") endif() +if(WIN32) + install(DIRECTORY "$/QTLibs" DESTINATION "${CMAKE_INSTALL_BINDIR}") +endif() if(MSVC) set(CPACK_GENERATOR ZIP) else() set(CPACK_GENERATOR TGZ) -endif() - -include(CPack) +endif() \ No newline at end of file