From 4f71a9434db1d85e7452f13a618b6fe9b06bb4bb Mon Sep 17 00:00:00 2001 From: Andrew Datsenko Date: Sun, 22 Jun 2025 23:48:38 -0700 Subject: [PATCH] Create `react/nativemodule/cputime/CMakeLists.txt` (#52157) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/52157 Changelog: [Internal] Add CMakeLists for `react/nativemodule/cputime` Reviewed By: christophpurrer Differential Revision: D77035337 fbshipit-source-id: c18289ed0558f8be7ba62f71bd74978a7c768e11 --- .../react/nativemodule/cputime/CMakeLists.txt | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 packages/react-native/ReactCommon/react/nativemodule/cputime/CMakeLists.txt diff --git a/packages/react-native/ReactCommon/react/nativemodule/cputime/CMakeLists.txt b/packages/react-native/ReactCommon/react/nativemodule/cputime/CMakeLists.txt new file mode 100644 index 00000000000..dd004554287 --- /dev/null +++ b/packages/react-native/ReactCommon/react/nativemodule/cputime/CMakeLists.txt @@ -0,0 +1,20 @@ +# 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_nativemodule_cpu_SRC CONFIGURE_DEPENDS *.cpp) +add_library(react_nativemodule_cpu OBJECT ${react_nativemodule_cpu_SRC}) + +target_include_directories(react_nativemodule_cpu PUBLIC ${REACT_COMMON_DIR}) + +target_link_libraries(react_nativemodule_cpu + react_codegen_rncore +) +target_compile_reactnative_options(react_nativemodule_cpu PRIVATE) +target_compile_options(react_nativemodule_cpu PRIVATE -Wpedantic)