Skip to content
Snippets Groups Projects
Commit 08a7e1ae authored by Sergey Kosukhin's avatar Sergey Kosukhin
Browse files

Remove the Fortran high-level interface from CMake

parent d5065760
No related branches found
No related tags found
1 merge request!71Remove the Fortran high-level interface
......@@ -197,7 +197,7 @@ include:
.common_cmake:
extends: .common
variables:
CMAKE_EXTRA_ARGS: -DMTIME_ENABLE_FORTRAN_HL:BOOL=OFF
CMAKE_EXTRA_ARGS:
# Cmake initializes Fortran compiler flags from FFLAGS:
FFLAGS: ${FCFLAGS}
script:
......@@ -357,7 +357,6 @@ Generate HTML pages:
-DCMAKE_C_COMPILER=gcc
-DCMAKE_Fortran_COMPILER=gfortran
-DBUILD_TESTING:BOOL=OFF
-DMTIME_ENABLE_FORTRAN_HL:BOOL=OFF
-DMTIME_ENABLE_PYTHON:BOOL=OFF
-DMTIME_BUILD_EXAMPLES:BOOL=OFF
-DMTIME_BUILD_DOCS:BOOL=ON
......
......@@ -14,7 +14,6 @@ project(
option(BUILD_SHARED_LIBS "Build shared libraries" ON)
option(BUILD_TESTING "Build tests" ON)
option(MTIME_ENABLE_FORTRAN_HL "Enable the high-level Fortran interface" ON)
option(MTIME_ENABLE_PYTHON "Enable the Python interface" OFF)
option(MTIME_BUILD_EXAMPLES "Build examples" ON)
option(MTIME_BUILD_DOCS "Build documentation" OFF)
......
......@@ -21,16 +21,6 @@ set(examples_Fortran
uniq
)
if(MTIME_ENABLE_FORTRAN_HL)
list(
APPEND
examples_Fortran
# cmake-format: sort
example_hl
iconoce_hl
)
endif()
foreach(example IN LISTS examples_Fortran)
add_executable(${example} ${example}.f90)
endforeach()
......
......@@ -84,18 +84,6 @@ add_library(
mtime_error_handling.f90
)
if(MTIME_ENABLE_FORTRAN_HL)
target_sources(
mtime
PRIVATE # cmake-format: sort
libmtime_hl.f90
mtime_t_datetime.inc
mtime_t_event.inc
mtime_t_juliandelta.inc
mtime_t_timedelta.inc
)
endif()
add_library(mtime::mtime ALIAS mtime)
set(Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment