diff --git a/external/easylogging++/CMakeLists.txt b/external/easylogging++/CMakeLists.txt index d8d061db..ae7d931c 100644 --- a/external/easylogging++/CMakeLists.txt +++ b/external/easylogging++/CMakeLists.txt @@ -43,3 +43,14 @@ target_link_libraries(easylogging PRIVATE ${CMAKE_THREAD_LIBS_INIT}) +# GUI/libwallet install target +if (BUILD_GUI_DEPS) + if(IOS) + set(lib_folder lib-${ARCH}) + else() + set(lib_folder lib) + endif() + install(TARGETS easylogging + ARCHIVE DESTINATION ${lib_folder}) +endif() +