Merge pull request #1649

aa95619 GUI: Add install target for epee (Jaqueeee)
This commit is contained in:
luigi1111 2017-01-30 17:57:19 -06:00
commit 15eb2bcf6f
No known key found for this signature in database
GPG key ID: F4ACA0183641E010

View file

@ -27,3 +27,13 @@
# THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
add_library(epee STATIC http_auth.cpp mlog.cpp)
# Build and install libepee if we're building for GUI
if (BUILD_GUI_DEPS)
if(IOS)
set(lib_folder lib-${ARCH})
else()
set(lib_folder lib)
endif()
install(TARGETS epee
ARCHIVE DESTINATION ${lib_folder})
endif()