Skip to content

Commit dd826b2

Browse files
cipolleschifacebook-github-bot
authored andcommitted
Build JSI, React-Debug and React-logger with SPM
Summary: This is an exploratory change to see how it will look like to build core from SPM. In this change we are building three pieces of React native (using the Podspec names for simplicity): - React-jsi - React-debug - React-logger They depends on a local ReactNativeDependency.xcframework we can build using the prebuild-io script. ## CHANGELOG: [INTERNAL] - set up initial Swift PM configuration Differential Revision: D70567840
1 parent 5349b7c commit dd826b2

File tree

1 file changed

+84
-0
lines changed

1 file changed

+84
-0
lines changed

packages/react-native/Package.swift

+84
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
// swift-tools-version: 6.0
2+
/*
3+
* Copyright (c) Meta Platforms, Inc. and affiliates.
4+
*
5+
* This source code is licensed under the MIT license found in the
6+
* LICENSE file in the root directory of this source tree.
7+
*/
8+
9+
import PackageDescription
10+
11+
let react = "React"
12+
13+
let cxxRNDepHeaderSearchPath: CXXSetting = .headerSearchPath("../../third-party/ReactNativeDependencies.xcframework/Headers")
14+
let cRNDepHeaderSearchPath: CSetting = .headerSearchPath("../../third-party/ReactNativeDependencies.xcframework/Headers")
15+
16+
17+
let package = Package(
18+
name: react,
19+
products: [
20+
// Products define the executables and libraries a package produces, making them visible to other packages.
21+
.library(
22+
name: react,
23+
type: .dynamic,
24+
targets: [.reactDebug, .jsi, .logger]
25+
),
26+
],
27+
targets: [
28+
.target(
29+
name: .reactDebug,
30+
path: "ReactCommon/react/debug",
31+
exclude: defaultExcludeFor(module: .reactDebug),
32+
publicHeadersPath: "."
33+
),
34+
.target(
35+
name: .jsi,
36+
dependencies: [.byNameItem(name: .reactNativeDependencies, condition: nil)],
37+
path: "ReactCommon/jsi",
38+
exclude: defaultExcludeFor(module: .jsi) + ["jsi/CMakeLists.txt", "jsi/test/testlib.h", "jsi/test/testlib.cpp"],
39+
sources: ["jsi"],
40+
publicHeadersPath: "jsi/",
41+
cSettings: [
42+
cRNDepHeaderSearchPath,
43+
.headerSearchPath(".")
44+
],
45+
cxxSettings: [
46+
cxxRNDepHeaderSearchPath,
47+
.headerSearchPath("."),
48+
.unsafeFlags(["-std=c++20"]),
49+
]
50+
),
51+
.target(
52+
name: .logger,
53+
dependencies: [
54+
.byNameItem(name: .reactNativeDependencies, condition: nil),
55+
.byNameItem(name: .jsi, condition: nil)
56+
],
57+
path: "ReactCommon/logger",
58+
exclude: defaultExcludeFor(module: .logger),
59+
publicHeadersPath: ".",
60+
cSettings: [
61+
cRNDepHeaderSearchPath
62+
],
63+
cxxSettings: [
64+
cxxRNDepHeaderSearchPath
65+
]
66+
),
67+
.binaryTarget(
68+
name: .reactNativeDependencies,
69+
path: "third-party/ReactNativeDependencies.xcframework"
70+
),
71+
]
72+
)
73+
74+
extension String {
75+
static let reactDebug = "React-debug"
76+
static let jsi = "React-jsi"
77+
static let logger = "React-logger"
78+
79+
static let reactNativeDependencies = "ReactNativeDependencies"
80+
}
81+
82+
func defaultExcludeFor(module: String) -> [String] {
83+
return ["BUCK", "CMakeLists.txt", "\(module).podspec"]
84+
}

0 commit comments

Comments
 (0)