File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed
Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 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+
27project (
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
Original file line number Diff line number Diff line change 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 )
67add_library (PhysiCell-modules OBJECT)
78add_library (PhysiCell-modules-no -addon OBJECT)
89
You can’t perform that action at this time.
0 commit comments