Skip to content

Commit 84a2e4e

Browse files
committed
Add CMAKE_CXX_STANDARD
1 parent b1c2dce commit 84a2e4e

File tree

5 files changed

+5
-1
lines changed

5 files changed

+5
-1
lines changed

src/serious_python/bin/package_command.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ class PackageCommand extends Command {
199199

200200
var junkFiles = isMobile ? junkFilesMobile : junkFilesDesktop;
201201

202-
// Extra indexs
202+
// Extra indexes
203203
List<String> extraPyPiIndexes = [mobilePyPiUrl];
204204
extraPyPiIndexes.add("https://cfms-dev.github.io/platform-wheels/");
205205
if (platform == "Pyodide") {

src/serious_python/example/flask_example/windows/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Project-level configuration.
22
cmake_minimum_required(VERSION 3.14)
3+
set(CMAKE_CXX_STANDARD 23)
34
project(flask_example LANGUAGES CXX)
45

56
# The name of the executable created for the application. Change this to change

src/serious_python/example/flet_example/windows/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Project-level configuration.
22
cmake_minimum_required(VERSION 3.14)
3+
set(CMAKE_CXX_STANDARD 23)
34
project(flet_example LANGUAGES CXX)
45

56
# The name of the executable created for the application. Change this to change

src/serious_python/example/run_example/windows/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Project-level configuration.
22
cmake_minimum_required(VERSION 3.14)
3+
set(CMAKE_CXX_STANDARD 23)
34
project(run_example LANGUAGES CXX)
45

56
# The name of the executable created for the application. Change this to change

src/serious_python_windows/windows/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# version, as doing so will cause the plugin to fail to compile for some
44
# customers of the plugin.
55
cmake_minimum_required(VERSION 3.14)
6+
set(CMAKE_CXX_STANDARD 23)
67

78
# Project-level configuration.
89
set(PROJECT_NAME "serious_python_windows")

0 commit comments

Comments
 (0)