File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -2,11 +2,12 @@ cmake_minimum_required(VERSION 3.10)
2
2
Include (FetchContent )
3
3
4
4
# set the project name
5
- project (NoarrStructuresMatrixExample VERSION 0.1 )
5
+ project (NoarrStructuresMatrixExample VERSION 0.1 LANGUAGES CXX )
6
6
7
7
# specify the C++ standard
8
8
set (CMAKE_CXX_STANDARD 20 )
9
9
set (CMAKE_CXX_STANDARD_REQUIRED True )
10
+ set (CMAKE_CXX_EXTENSIONS OFF )
10
11
11
12
# setup the test runner executable
12
13
add_executable (matrix matrix.cpp )
Original file line number Diff line number Diff line change 1
1
cmake_minimum_required (VERSION 3.10 )
2
2
3
3
# set the project name
4
- project (NoarrTests VERSION 0.20.0 )
4
+ project (
5
+ NoarrTests VERSION 0.20.0
6
+ DESCRIPTION "Tests for the Noarr library"
7
+ LANGUAGES CXX
8
+ )
5
9
6
10
include (CTest )
7
11
enable_testing ()
You can’t perform that action at this time.
0 commit comments