From 16e051c8a880a63aacdd217f24c55f9f6154bb00 Mon Sep 17 00:00:00 2001 From: tobtoht Date: Tue, 1 Oct 2024 22:50:59 +0200 Subject: [PATCH] cmake: remove wallet_merged --- src/wallet/CMakeLists.txt | 34 ---------------------------------- 1 file changed, 34 deletions(-) diff --git a/src/wallet/CMakeLists.txt b/src/wallet/CMakeLists.txt index fc41cffb7f..7be7c85a59 100644 --- a/src/wallet/CMakeLists.txt +++ b/src/wallet/CMakeLists.txt @@ -66,38 +66,4 @@ target_link_libraries(wallet PRIVATE ${EXTRA_LIBRARIES}) -# build and install libwallet_merged only if we building for GUI -if (BUILD_GUI_DEPS) - set(libs_to_merge - wallet_api - wallet - rpc_base - multisig - cryptonote_core - cryptonote_basic - mnemonics - common - cncrypto - device - hardforks - ringct - ringct_basic - checkpoints - version - net - device_trezor) - - foreach(lib ${libs_to_merge}) - list(APPEND objlibs $) # matches naming convention in src/CMakeLists.txt - endforeach() - add_library(wallet_merged STATIC ${objlibs}) - if(IOS) - set(lib_folder lib-${ARCH}) - else() - set(lib_folder lib) - endif() - install(TARGETS wallet_merged - ARCHIVE DESTINATION ${lib_folder}) -endif() - add_subdirectory(api)