1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00

split up libc and libc++ for static links

This commit is contained in:
Jeff Becker 2018-06-14 16:54:16 -04:00
parent f0cb152c19
commit ce2341ab1c
No known key found for this signature in database
GPG key ID: F357B3B42F6F9B05

View file

@ -73,10 +73,15 @@ endif()
set(LIBS ${SODIUM_LIB} pthread)
if(STATIC_LIBS)
set(LIBS ${LIBS} ${STATIC_LIBS})
if(STATIC_LIBC)
set(LIBS ${LIBS} ${STATIC_LIBC})
endif()
if(STATIC_LIBCXX)
set(LIBS ${LIBS} ${STATIC_LIBCXX})
endif()
set(LIB llarp)
set(SHARED_LIB ${LIB})
set(STATIC_LIB ${LIB}-static)