copied the templates
This commit is contained in:
commit
46636593b5
63 changed files with 570970 additions and 0 deletions
13
mgrid_2/CMakeLists.txt
Normal file
13
mgrid_2/CMakeLists.txt
Normal 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})
|
||||
Loading…
Add table
Add a link
Reference in a new issue