Skip to content

Commit 6bf6569

Browse files
committed
test
1 parent f5fffd5 commit 6bf6569

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

CMakeLists.txt

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
cmake_minimum_required(VERSION 3.24)
1+
cmake_minimum_required(VERSION 3.12)
2+
# Set C++ standard and enable optimizations
3+
set(CMAKE_CXX_STANDARD 20)
4+
set(CMAKE_CXX_STANDARD_REQUIRED ON)
5+
6+
27
project(
38
PhysiCell
49
LANGUAGES CXX
510
VERSION 1.14.2)
611

7-
# Set C++ standard and enable optimizations
8-
set(CMAKE_CXX_STANDARD 20)
9-
set(CMAKE_CXX_STANDARD_REQUIRED ON)
1012

1113

1214
# Options to build addons

modules/CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
# 1) PhysiCell-modules: includes all modules functionality
33
# 2) PhysiCell-modules-no-addon: includes all modules functionality, excluding the multicellds class
44
# The latter is necessary for projects that define ADDON_* macro for the specific intracellular support
5-
5+
set(CMAKE_CXX_STANDARD 20)
6+
set(CMAKE_CXX_STANDARD_REQUIRED ON)
67
add_library(PhysiCell-modules OBJECT)
78
add_library(PhysiCell-modules-no-addon OBJECT)
89

0 commit comments

Comments
 (0)