Skip to content

Commit 040d93d

Browse files
Fixed library version in the Fortran90 module
Closes #389
1 parent 94fe6e0 commit 040d93d

3 files changed

Lines changed: 3 additions & 54 deletions

File tree

bindings/f90/CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ add_library (NeXus_F90_Shared_Library SHARED ${SOURCES})
4646
#Note - library version needs to be got from somewhere?
4747
set_target_properties(NeXus_F90_Shared_Library PROPERTIES
4848
OUTPUT_NAME NeXus90
49-
VERSION 1.0 SOVERSION 4)
49+
VERSION "${NAPI_VERSION}"
50+
SOVERSION ${NEXUS_SONAME})
5051

5152
target_link_libraries(NeXus_F90_Shared_Library NeXus_Shared_Library )
5253

bindings/f90/Makefile.am

Lines changed: 0 additions & 52 deletions
This file was deleted.

bindings/f90/NXmodule.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ MODULE NXmodule
3030

3131
PUBLIC
3232
! *** NeXus version parameter
33-
CHARACTER(len=*), PARAMETER, PUBLIC :: NeXus_version = "2.0.1"
33+
CHARACTER(len=*), PARAMETER, PUBLIC :: NeXus_version = "4.4.0"
3434
! *** NeXus file access parameters
3535
INTEGER, PARAMETER, PUBLIC :: NXACC_READ = 1
3636
INTEGER, PARAMETER, PUBLIC :: NXACC_RDWR = 2

0 commit comments

Comments
 (0)