copied the templates

This commit is contained in:
jakob.schratter 2026-01-19 10:45:46 +01:00
commit 46636593b5
63 changed files with 570970 additions and 0 deletions

13
mgrid_2/CMakeLists.txt Normal file
View file

@ -0,0 +1,13 @@
cmake_minimum_required(VERSION 3.21)
project(mgrid_2)
set(CMAKE_CXX_STANDARD 17)
add_compile_options(-fopenmp)
add_link_options(-fopenmp)
#Can manually add the sources using the set command as follows:
#set(SOURCES src/mainapp.cpp src/Student.cpp)
#However, the file(GLOB...) allows for wildcard additions:
file(GLOB SOURCES "*.cpp")
add_executable(mgrid_2 ${SOURCES})