--- CMakeLists.txt.orig 2026-06-02 19:58:40 +++ CMakeLists.txt 2026-06-02 19:58:26 @@ -7,14 +7,11 @@ -find_package(Qt6 REQUIRED COMPONENTS Quick) +find_package(Qt6 REQUIRED COMPONENTS Core) qt_standard_project_setup(REQUIRES 6.5) -set(FETCHCONTENT_UPDATES_DISCONNECTED 1) -include(FetchContent) -FetchContent_Declare(replxx GIT_REPOSITORY https://github.com/AmokHuginnsson/replxx.git) -FetchContent_MakeAvailable(replxx) +find_package(replxx REQUIRED) set(GOODASM_SOURCES @@ -129,7 +126,7 @@ # garepl.h garepl.cpp ## Old REPL, removed 2025.07.06 gareplxx.h gareplxx.cpp ) - target_link_libraries(libgoodasm PUBLIC Qt6::Quick) + target_link_libraries(libgoodasm PUBLIC Qt6::Core) target_include_directories(libgoodasm INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}) set_property(TARGET libgoodasm PROPERTY OUTPUT_NAME goodasm) # Have MSVC define the the __cplusplus macro for Qt6 to build correctly.