Skip to content

Commit 185ef91

Browse files
Updated to C++ 20 (#136)
Update to C++ 20.
1 parent fec7975 commit 185ef91

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ FetchContent_Declare(AndroidExtensions
1515
EXCLUDE_FROM_ALL)
1616
FetchContent_Declare(arcana.cpp
1717
GIT_REPOSITORY https://github.com/microsoft/arcana.cpp.git
18-
GIT_TAG c02527c32d51b6b3ffeda36f8cf140d2e1c60bb9
18+
GIT_TAG 7c6be8aaa29effbc8ee1a2217388fb6e399150d2
1919
EXCLUDE_FROM_ALL)
2020
FetchContent_Declare(asio
2121
GIT_REPOSITORY https://github.com/chriskohlhoff/asio.git
@@ -37,7 +37,7 @@ FetchContent_Declare(llhttp
3737
EXCLUDE_FROM_ALL)
3838
FetchContent_Declare(UrlLib
3939
GIT_REPOSITORY https://github.com/BabylonJS/UrlLib.git
40-
GIT_TAG e698870b37b2e302fb179a137d7a96cc6813d2de
40+
GIT_TAG d53beb958b1cccafd5411260ace6d32b68b56a83
4141
EXCLUDE_FROM_ALL)
4242
# --------------------------------------------------
4343

@@ -55,7 +55,7 @@ project(JsRuntimeHost)
5555

5656
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
5757

58-
set(CMAKE_CXX_STANDARD 17)
58+
set(CMAKE_CXX_STANDARD 20)
5959
set(CMAKE_CXX_STANDARD_REQUIRED ON)
6060

6161
# --------------------------------------------------

Tests/UnitTests/Android/app/src/main/cpp/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.18)
22

3-
set(CMAKE_CXX_STANDARD 17)
3+
set(CMAKE_CXX_STANDARD 20)
44
set(CMAKE_CXX_STANDARD_REQUIRED ON)
55

66
project(UnitTestsJNI)

0 commit comments

Comments
 (0)