31 lines
597 B
CMake
31 lines
597 B
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.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 testutil_SRC
|
||
|
jni/*.cpp
|
||
|
testutil/*.cpp)
|
||
|
|
||
|
add_library(testutil SHARED
|
||
|
${testutil_SRC})
|
||
|
|
||
|
target_include_directories(testutil PRIVATE
|
||
|
include)
|
||
|
|
||
|
target_link_libraries(testutil android log)
|