Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
parlib
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
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
Debolskiy Andrey
parlib
Merge requests
!1
Fixed fortran test
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Fixed fortran test
tsybulin/parlib:master
into
master
Overview
1
Commits
6
Pipelines
0
Changes
2
Closed
Ivan Tsybulin
requested to merge
tsybulin/parlib:master
into
master
2 years ago
Overview
1
Commits
6
Pipelines
0
Changes
2
Expand
Include
parlibf.h
must be after
implicit none
Edited
2 years ago
by
Ivan Tsybulin
0
0
Merge request reports
Compare
master
version 5
498efb87
2 years ago
version 4
c68e220e
2 years ago
version 3
5dd222b0
2 years ago
version 2
623a9886
2 years ago
version 1
2bef25ba
2 years ago
master (base)
and
version 4
latest version
2f19aa11
6 commits,
2 years ago
version 5
498efb87
5 commits,
2 years ago
version 4
c68e220e
4 commits,
2 years ago
version 3
5dd222b0
3 commits,
2 years ago
version 2
623a9886
2 commits,
2 years ago
version 1
2bef25ba
1 commit,
2 years ago
2 files
+
5
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
ParLib.src/CMakeLists.txt
+
3
−
3
Options
@@ -156,12 +156,12 @@ endif(BUILD_FORT_LIBS)
#~TESTS
if
(
BUILD_FORT_LIBS
)
if
(
BUILD_SHARED_LIBS
)
add_executable
(
parlibf_test_shared parlibf_test.
f
90
)
add_executable
(
parlibf_test_shared parlibf_test.
F
90
)
target_link_libraries
(
parlibf_test_shared
parlibf-shared
)
endif
(
BUILD_SHARED_LIBS
)
if
(
BUILD_STATIC_LIBS
)
add_executable
(
parlibf_test_static parlibf_test.
f
90
)
add_executable
(
parlibf_test_static parlibf_test.
F
90
)
target_link_libraries
(
parlibf_test_static
parlibf-static
)
endif
(
BUILD_STATIC_LIBS
)
@@ -254,4 +254,4 @@ endif(BUILD_SHARED_LIBS)
endif
(
BUILD_FORT_LIBS
)
#adding man pages
add_subdirectory
(
man
)
\ No newline at end of file
add_subdirectory
(
man
)
Loading