-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
66320cd
commit cc56f00
Showing
3 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# This file is part of HemeLB and is Copyright (C) | ||
# the HemeLB team and/or their institutions, as detailed in the | ||
# file AUTHORS. This software is provided under the terms of the | ||
# license in the file LICENSE. | ||
|
||
cmake_minimum_required (VERSION 3.13) | ||
|
||
project(testcpp) | ||
|
||
find_package(MPI REQUIRED CXX) | ||
|
||
# Set the language standard strictly. | ||
set(CMAKE_CXX_STANDARD 20) | ||
set(CMAKE_CXX_STANDARD_REQUIRED ON) | ||
set(CMAKE_CXX_EXTENSIONS OFF) | ||
|
||
# Config XML checker (confcheck) | ||
add_executable(testprog test.cpp) | ||
target_link_libraries(testprog MPI::MPI_CXX) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// This file is part of HemeLB and is Copyright (C) | ||
// the HemeLB team and/or their institutions, as detailed in the | ||
// file AUTHORS. This software is provided under the terms of the | ||
// license in the file LICENSE. | ||
|
||
int main() { | ||
return 0; | ||
} |