2017-04-20 12:43:17 -07:00
|
|
|
#
|
|
|
|
# Copyright (c) 2014-present, Facebook, Inc.
|
|
|
|
#
|
2018-02-16 18:24:55 -08:00
|
|
|
# This source code is licensed under the MIT license found in the
|
|
|
|
# LICENSE file in the root directory of this source tree.
|
2017-04-20 12:43:17 -07:00
|
|
|
#
|
|
|
|
|
|
|
|
cmake_minimum_required(VERSION 3.4.1)
|
|
|
|
|
|
|
|
set(CMAKE_VERBOSE_MAKEFILE on)
|
|
|
|
|
|
|
|
add_compile_options(
|
|
|
|
-fno-omit-frame-pointer
|
|
|
|
-fexceptions
|
|
|
|
-Wall
|
|
|
|
-std=c++11
|
|
|
|
-DDISABLE_CPUCAP
|
|
|
|
-DDISABLE_XPLAT)
|
|
|
|
|
|
|
|
file(GLOB fb_SRC
|
|
|
|
*.cpp
|
|
|
|
jni/*.cpp
|
|
|
|
lyra/*.cpp)
|
|
|
|
|
|
|
|
add_library(fb SHARED
|
|
|
|
${fb_SRC})
|
|
|
|
|
|
|
|
target_include_directories(fb PRIVATE
|
|
|
|
include)
|
|
|
|
|
|
|
|
target_link_libraries(fb android log)
|