Skip to content

Commit

Permalink
add rudimentary cmake support
Browse files Browse the repository at this point in the history
  • Loading branch information
tukss committed Jun 19, 2024
1 parent 56ede33 commit ed4c00b
Show file tree
Hide file tree
Showing 3 changed files with 486 additions and 0 deletions.
11 changes: 11 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
cmake_minimum_required(VERSION 3.28)

list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake)

project(rayleigh LANGUAGES C Fortran)

find_package(MPI COMPONENTS C REQUIRED Fortran REQUIRED)
find_package(LAPACK COMPONENTS Fortran REQUIRED)
find_package(FFTW REQUIRED)

add_subdirectory(src)
Loading

0 comments on commit ed4c00b

Please sign in to comment.