Fixing failure building RN codegen CLI on Windows (#34791)

Summary:
Ensuring the file paths uses forward slashes as separator to avoid the characters from being interpreted as ASCII escape characters.

## Changelog

Fixing build failure building RN codegen CLI on Windows. Ensuring the file paths uses forward slashes as separator to avoid the characters from being interpreted as ASCII escape characters.

[Android] [Fixed] - Fixing failure building RN codegen CLI on Windows

Pull Request resolved: https://github.com/facebook/react-native/pull/34791

Test Plan: Ensured RN main branch builds on Windows with new architecture turned on.

Reviewed By: cipolleschi

Differential Revision: D39889468

Pulled By: cipolleschi

fbshipit-source-id: 7d79eac9f433908cc86dd7ca2eec841739ef6365
This commit is contained in:
Anandraj Govindan 2022-10-03 04:56:32 -07:00 коммит произвёл Facebook GitHub Bot
Родитель 121184bb8f
Коммит 85c0c0f21f
1 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -28,9 +28,14 @@ endif(CCACHE_FOUND)
include(${REACT_ANDROID_DIR}/cmake-utils/Android-prebuilt.cmake) include(${REACT_ANDROID_DIR}/cmake-utils/Android-prebuilt.cmake)
set(BUILD_DIR ${PROJECT_BUILD_DIR})
if(CMAKE_HOST_WIN32)
string(REPLACE "\\" "/" BUILD_DIR ${BUILD_DIR})
endif()
file(GLOB input_SRC CONFIGURE_DEPENDS file(GLOB input_SRC CONFIGURE_DEPENDS
*.cpp *.cpp
${PROJECT_BUILD_DIR}/generated/rncli/src/main/jni/*.cpp) ${BUILD_DIR}/generated/rncli/src/main/jni/*.cpp)
add_library(${CMAKE_PROJECT_NAME} SHARED ${input_SRC}) add_library(${CMAKE_PROJECT_NAME} SHARED ${input_SRC})