1# Copyright (c) Meta Platforms, Inc. and affiliates. 2# 3# This source code is licensed under the MIT license found in the 4# LICENSE file in the root directory of this source tree. 5 6cmake_minimum_required(VERSION 3.13) 7set(CMAKE_VERBOSE_MAKEFILE on) 8 9add_compile_options( 10 -fexceptions 11 -frtti 12 -std=c++17 13 -Wall 14 -DLOG_TAG=\"Fabric\") 15 16 17file(GLOB react_debug_SRC CONFIGURE_DEPENDS *.cpp) 18add_library(react_debug SHARED ${react_debug_SRC}) 19 20target_include_directories(react_debug PUBLIC ${REACT_COMMON_DIR}) 21 22target_link_libraries(react_debug log folly_runtime) 23