# Copyright (c) Meta Platforms, Inc. and 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.13) set(CMAKE_VERBOSE_MAKEFILE on) include(${REACT_COMMON_DIR}/cmake-utils/react-native-flags.cmake) file(GLOB react_renderer_css_SRC CONFIGURE_DEPENDS *.cpp) # We need to create library as INTERFACE if it is header only if("${react_renderer_css_SRC}" STREQUAL "") add_library(react_renderer_css INTERFACE) target_include_directories(react_renderer_css INTERFACE ${REACT_COMMON_DIR}) target_link_libraries(react_renderer_css INTERFACE fast_float glog react_debug react_utils) target_compile_reactnative_options(react_renderer_css INTERFACE "Fabric") target_compile_options(react_renderer_css INTERFACE -Wpedantic) else() add_library(react_renderer_css OBJECT ${react_renderer_css_SRC}) target_include_directories(react_renderer_css PUBLIC ${REACT_COMMON_DIR}) target_link_libraries(react_renderer_css fast_float glog react_debug react_utils) target_compile_reactnative_options(react_renderer_css PRIVATE "Fabric") target_compile_options(react_renderer_css PRIVATE -Wpedantic) endif()