Link static libraries statically (#277)

Summary:
Pull Request resolved: https://github.com/facebook/flipper/pull/277

Link all dynamically loaded libraries statically with the exception of libevent.

Reviewed By: jknoxville

Differential Revision: D9967422

fbshipit-source-id: b33cec5da0c2b34f47217353f205b9d77f1acae2
This commit is contained in:
Pascal Hartig
2018-09-20 09:33:14 -07:00
committed by Facebook Github Bot
parent c0982ea1db
commit cc6f28f7c4
6 changed files with 6 additions and 6 deletions

View File

@@ -40,7 +40,7 @@ add_compile_options(-DFOLLY_NO_CONFIG
file(GLOB SOURCES Sonar/*.cpp)
add_library(${PACKAGE_NAME} SHARED ${SOURCES})
add_library(${PACKAGE_NAME} STATIC ${SOURCES})
set(build_DIR ${CMAKE_SOURCE_DIR}/build)
set(libfolly_build_DIR ${build_DIR}/libfolly/${ANDROID_ABI})