Merge pull request #2015

b7ae0911 GUI: easylogging++ install target (Jaquee)
This commit is contained in:
Riccardo Spagni 2017-05-06 19:41:25 +02:00
commit 694470fae7
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD
1 changed files with 11 additions and 0 deletions

View File

@ -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()