Summary: I'm in the progress of releasing a prefab-enabled FBJNI release. This dramatically reduces the hackery around integrating with separately released native libraries. This will fail until the release is actually out. Pull Request resolved: https://github.com/facebook/flipper/pull/1941 Test Plan: `./gradlew :sample:installDebug` works as before. Once the release is out, we need to check if this creates any problems with RN but because we advice to exclude the dependency, I expect it not to cause any trouble. Reviewed By: mweststrate Differential Revision: D26545104 Pulled By: passy fbshipit-source-id: 1e21fa1816f28e2fcb52da68863fabc8bc625136
71 lines
2.2 KiB
CMake
71 lines
2.2 KiB
CMake
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
#
|
|
# This source code is licensed under the MIT license found in the
|
|
# LICENSE file in the root directory of this source tree.
|
|
|
|
cmake_minimum_required (VERSION 3.6.0)
|
|
project(flipper CXX)
|
|
set(CMAKE_CXX_STANDARD 14)
|
|
set(CMAKE_CXX_EXTENSIONS OFF)
|
|
set(CMAKE_VERBOSE_MAKEFILE on)
|
|
|
|
set(PACKAGE_NAME "flipper")
|
|
|
|
add_compile_options(-DFLIPPER_OSS=1
|
|
-DFOLLY_NO_CONFIG
|
|
-DSONAR_JNI_EXTERNAL=1
|
|
-DFB_SONARKIT_ENABLED=1
|
|
-DFOLLY_HAVE_MEMRCHR
|
|
-DFOLLY_MOBILE=1
|
|
-DFOLLY_USE_LIBCPP=1
|
|
-DFOLLY_HAVE_LIBJEMALLOC=0
|
|
-DFOLLY_HAVE_PREADV=0
|
|
-frtti
|
|
-fexceptions
|
|
-Wno-error
|
|
-Wno-unused-local-typedefs
|
|
-Wno-unused-variable
|
|
-Wno-sign-compare
|
|
-Wno-comment
|
|
-Wno-return-type
|
|
-Wno-tautological-constant-compare
|
|
)
|
|
|
|
file(GLOB SOURCES src/main/cpp/sonar.cpp)
|
|
add_library(${PACKAGE_NAME} SHARED ${SOURCES})
|
|
target_include_directories(${PACKAGE_NAME} PUBLIC "./")
|
|
|
|
set(libjnihack_DIR ${CMAKE_SOURCE_DIR}/../libs/jni-hack/)
|
|
set(libflipper_DIR ${CMAKE_SOURCE_DIR}/../xplat/)
|
|
set(external_DIR ${PROJECT_SOURCE_DIR}/third-party/external)
|
|
set(libfolly_DIR ${external_DIR}/folly/)
|
|
set(glog_DIR ${external_DIR}/glog)
|
|
set(BOOST_DIR ${external_DIR}/boost/boost_1_63_0/)
|
|
set(LIBEVENT_DIR ${external_DIR}/LibEvent/libevent-2.1.11-stable/)
|
|
|
|
set(build_DIR ${CMAKE_SOURCE_DIR}/build)
|
|
|
|
set(libflipper_build_DIR ${build_DIR}/libflipper/${ANDROID_ABI})
|
|
set(libfolly_build_DIR ${build_DIR}/libfolly/${ANDROID_ABI})
|
|
|
|
file(MAKE_DIRECTORY ${build_DIR})
|
|
find_package(fbjni REQUIRED CONFIG)
|
|
|
|
add_subdirectory(${libflipper_DIR} ${libflipper_build_DIR})
|
|
|
|
target_include_directories(${PACKAGE_NAME} PRIVATE
|
|
${libjnihack_DIR}
|
|
${libflipper_DIR}
|
|
${libfolly_DIR}
|
|
${glog_DIR}
|
|
${glog_DIR}/../
|
|
${glog_DIR}/glog-0.3.5/src/
|
|
${BOOST_DIR}
|
|
${BOOST_DIR}/../
|
|
${LIBEVENT_DIR}/
|
|
${LIBEVENT_DIR}/include/
|
|
${LIBEVENT_DIR}/include/event2
|
|
)
|
|
|
|
target_link_libraries(${PACKAGE_NAME} fbjni::fbjni flippercpp)
|