-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
92 lines (75 loc) · 2.51 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
### setup project ###
cmake_minimum_required(VERSION 3.9)
project(fortran-math-tests
VERSION 1.0
DESCRIPTION "Fortran-Math-Tests Fortran Package"
LANGUAGES C Fortran
)
# Safety net
if(PROJECT_SOURCE_DIR STREQUAL PROJECT_BINARY_DIR)
message(
FATAL_ERROR
"In-source builds not allowed. Please make a new directory (called a build directory) and run CMake from there.\n"
)
endif()
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE Release)
endif()
set(CMAKE_CXX_FLAGS "-Wall -Wextra")
set(CMAKE_Fortran_FLAGS_DEBUG "-g")
set(CMAKE_Fortran_FLAGS_RELEASE "-O3")
include(CheckFortranCompilerFlag)
check_fortran_compiler_flag("-heap-arrays" FHEAPARRAYS)
if(${FHEAPARRAYS})
message(STATUS "Compiler flag -heap-arrays is supported.")
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -heap-arrays")
endif()
check_fortran_compiler_flag("-no-wrap-margin" FNOWRAPMARGIN)
if(${FNOWRAPMARGIN})
message(STATUS "Compiler flag -no-wrap-margin is supported.")
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -no-wrap-margin")
endif()
# Lapack Package
find_package(BLAS REQUIRED)
set (CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${BLAS_LINKER_FLAGS}")
# Lapack Package
find_package(LAPACK REQUIRED)
set (CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${LAPACK_LINKER_FLAGS}")
if(${CMAKE_VERSION} VERSION_LESS "3.18.0")
message(WARNING "CMake version before Fortran_PREPROCESS is introduced.")
add_compile_options(-cpp)
else()
set_source_files_properties(
run_tests.f90 cmateig/cmateig.f90 matinv/matinv.f90 cmatinv/cmatinv.f90
PROPERTIES Fortran_PREPROCESS ON
)
endif()
add_compile_definitions(LOOP=10)
message(STATUS "Add libmodules.a subdirectory.")
add_subdirectory(modules)
message(STATUS "Add cmateig subdirectory.")
add_subdirectory(cmateig)
message(STATUS "Add matinv subdirectory.")
add_subdirectory(matinv)
message(STATUS "Add cmatinv subdirectory.")
add_subdirectory(cmatinv)
message(STATUS "Add dmatmul subdirectory.")
add_subdirectory(dmatmul)
add_executable(run_tests
run_tests.f90 cmateig/cmateig.f90 matinv/matinv.f90 dmatmul/dmatmul.f90 cmatinv/cmatinv.f90
)
include(CTest)
add_test(NAME Run_Tests
COMMAND run_tests)
target_link_libraries(run_tests PRIVATE "${BLAS_LIBRARIES}" "${LAPACK_LIBRARIES}" modules)
# target_link_libraries(run_tests PRIVATE "${LAPACK_LIBRARIES}")
# target_link_libraries(run_tests modules)
file(RELATIVE_PATH rel ${CMAKE_BINARY_DIR} ${CMAKE_CURRENT_BINARY_DIR})
if (rel STREQUAL "")
set(rel ".")
endif()
install(
TARGETS run_tests
RUNTIME
DESTINATION ${rel}
)