Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libmtime
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
icon-libraries
libmtime
Commits
08a7e1ae
Commit
08a7e1ae
authored
2 months ago
by
Sergey Kosukhin
Browse files
Options
Downloads
Patches
Plain Diff
Remove the Fortran high-level interface from CMake
parent
d5065760
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!71
Remove the Fortran high-level interface
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitlab-ci.yml
+1
-2
1 addition, 2 deletions
.gitlab-ci.yml
CMakeLists.txt
+0
-1
0 additions, 1 deletion
CMakeLists.txt
examples/CMakeLists.txt
+0
-10
0 additions, 10 deletions
examples/CMakeLists.txt
src/CMakeLists.txt
+0
-12
0 additions, 12 deletions
src/CMakeLists.txt
with
1 addition
and
25 deletions
.gitlab-ci.yml
+
1
−
2
View file @
08a7e1ae
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
CMakeLists.txt
+
0
−
1
View file @
08a7e1ae
...
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
examples/CMakeLists.txt
+
0
−
10
View file @
08a7e1ae
...
...
@@ -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
()
...
...
This diff is collapsed.
Click to expand it.
src/CMakeLists.txt
+
0
−
12
View file @
08a7e1ae
...
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment