Skip to content

Commit 6da88a8

Browse files
committed
Merge branch 'dev-0.15'
2 parents 3dc459b + 2b16c63 commit 6da88a8

File tree

8 files changed

+1233
-1224
lines changed

8 files changed

+1233
-1224
lines changed

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v20.12.2
1+
v20.15.1

CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
project(rn-static-server C)
22
cmake_minimum_required(VERSION 3.22.1 FATAL_ERROR)
33

4+
if (CMAKE_VERSION MATCHES "3.30.0")
5+
message(FATAL_ERROR "CMake v3.30.0 is not supported: https://github.com/birdofpreyru/react-native-static-server/issues/111")
6+
endif()
7+
48
# This prevents CMake from complaining that INSTALL(..) directives in
59
# Lighttpd CMakeLists.txt miss BUNDLE DESTINATION.
610
set(CMAKE_MACOSX_BUNDLE OFF)

README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,13 @@ and [old][Old Architecture] RN architectures.
6060
</tr>
6161
</table>
6262

63-
[![Logo](https://avatars.githubusercontent.com/u/71085569?s=36)](https://github.com/Lumentric)
63+
[<img width=36 src="https://avatars.githubusercontent.com/u/71085569?s=36" />](https://github.com/Lumentric)
64+
65+
### [Contributors](https://github.com/birdofpreyru/react-native-static-server/graphs/contributors)
66+
[<img width=36 src="https://avatars.githubusercontent.com/u/62563469?s=36&v=4" />](https://github.com/jole141)
67+
[<img width=36 src="https://avatars.githubusercontent.com/u/10153413?s=36&v=4" />](https://github.com/exotexot)
68+
[<img width=36 src="https://avatars.githubusercontent.com/u/10667346?s=36&v=4" />](https://github.com/rafalzawadzki)
69+
[<img width=36 src="https://avatars.githubusercontent.com/u/20144632?s=36&v=4" />](https://github.com/birdofpreyru)
6470

6571
## Content
6672

@@ -132,6 +138,11 @@ and [old][Old Architecture] RN architectures.
132138

133139
- [CMake] is required on the build host.
134140

141+
- **BEWARE:** [**CMake v3.30.0** breaks the library build for iOS](https://github.com/birdofpreyru/react-native-static-server/issues/111)
142+
because of a regression on CMake side, and for this reason it is marked as
143+
unsupported on all platforms &mdash; be sure to use a different version
144+
(v3.22.1&ndash;3.29.6 at the moment of writing).
145+
135146
- When building for **Android**, [CMake] should be installed as a part of your
136147
_Android SDK_ (open _SDK Manager_, and look for [CMake] within
137148
the _SDK Tools_ tab).
@@ -141,6 +152,7 @@ and [old][Old Architecture] RN architectures.
141152
```shell
142153
$ brew install cmake pkg-config
143154
```
155+
144156
**IMPORTANT:** [Homebrew] should have added `eval "$(/opt/homebrew/bin/brew shellenv)"'`
145157
command to your `.zshrc` or `.bashrc`. Although this works for interactive terminals,
146158
it might not work for sessions inside of other apps, such as XCode, therefore you might need to

0 commit comments

Comments
 (0)