Skip to content

Commit

Permalink
Merge pull request #23 from Fytch/master
Browse files Browse the repository at this point in the history
groupK submission
  • Loading branch information
stubbiali authored Sep 22, 2021
2 parents 020d2b0 + d63c563 commit 2208f81
Show file tree
Hide file tree
Showing 16 changed files with 2,129 additions and 0 deletions.
Binary file added projects/2021/groupK_burgers_openmp/HPC4WC.pdf
Binary file not shown.
27 changes: 27 additions & 0 deletions projects/2021/groupK_burgers_openmp/branch-master/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
cmake_minimum_required(VERSION 3.14)
project(HPWCProject)

set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)

include(FetchContent)

find_package(Eigen3 3.4 QUIET)
if(NOT EIGEN_FOUND)
FetchContent_Declare(
Eigen
GIT_REPOSITORY https://gitlab.com/libeigen/eigen
GIT_TAG 3.4
)
FetchContent_MakeAvailable(Eigen)
endif()

FetchContent_Declare(
ProgramOptionsHxx
GIT_REPOSITORY https://github.com/Fytch/ProgramOptions.hxx
)
FetchContent_MakeAvailable(ProgramOptionsHxx)

add_executable(HPWCProject main.cpp)
target_link_libraries(HPWCProject Eigen3::Eigen ProgramOptionsHxx)
Loading

0 comments on commit 2208f81

Please sign in to comment.