Changeset 1629
- Timestamp:
- 18/08/11 19:19:06 (9 months ago)
- Location:
- trunk
- Files:
-
- 1 added
- 3 edited
-
bindings/CMakeLists.txt (modified) (1 diff, 1 prop)
-
cmake_include/FindSZIP.cmake (modified) (1 diff)
-
src/CMakeLists.txt (modified) (2 diffs)
-
third_party/README.txt (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bindings/CMakeLists.txt
- Property svn:eol-style set to native
r1625 r1629 33 33 endif (CMAKE_Fortran_COMPILER_WORKS) 34 34 #add_subdirectory (idl) 35 add_subdirectory (java) 35 if (NOT(Java_JAVAC_EXECUTABLE MATCHES NOTFOUND)) 36 add_subdirectory (java) 37 endif () 36 38 #add_subdirectory (matlab) 37 39 if (PYTHONINTERP_FOUND) -
trunk/cmake_include/FindSZIP.cmake
r1625 r1629 27 27 #==================================================================== 28 28 29 find_library(SZIP_LIB NAMES sz szip PATHS $ENV{HDF5_ROOT}/bin $ENV{HDF5_ROOT}/lib )29 find_library(SZIP_LIB NAMES sz szip PATHS $ENV{HDF5_ROOT}/bin $ENV{HDF5_ROOT}/lib $ENV{HDF5_ROOT}/dll) 30 30 31 31 find_path(SZIP_INCLUDE NAMES sz.h szlib.h PATHS $ENV{HDF5_ROOT}/include) -
trunk/src/CMakeLists.txt
r1618 r1629 58 58 #endif (MINGW_MSYS) 59 59 60 # need napi_exports2.c on win32 but not win64 61 if (WIN32) 62 set(WINSRC napi_exports.c napi_exports.h) 63 endif (WIN32) 64 60 65 #Make NeXus Static Library 61 62 66 add_library (NeXus_Static_Library STATIC napi.c napiu.c nxstack.c nxstack.h 63 stptok.c nxdataset.c nxdataset.h nx_stptok.h ${ H4SRC} ${H5SRC}67 stptok.c nxdataset.c nxdataset.h nx_stptok.h ${WINSRC} ${H4SRC} ${H5SRC} 64 68 ${XMLSRC}) 65 69 … … 73 77 74 78 add_library (NeXus_Shared_Library SHARED napi.c napiu.c nxstack.c nxstack.h 75 stptok.c nxdataset.c nxdataset.h nx_stptok.h ${ H4SRC} ${H5SRC}79 stptok.c nxdataset.c nxdataset.h nx_stptok.h ${WINSRC} ${H4SRC} ${H5SRC} 76 80 ${XMLSRC}) 77 81 78 82 #Note - library version needs to be got from somewhere? 79 83 set_target_properties(NeXus_Shared_Library PROPERTIES OUTPUT_NAME NeXus 80 VERSION 1.0 SOVERSION 4 )84 VERSION 1.0 SOVERSION 4 LINK_FLAGS /def:${PROJECT_SOURCE_DIR}\\windows_extra\\libnexus-0-x64.def) 81 85 82 86 target_link_libraries(NeXus_Shared_Library ${HDF5_LIBRARIES}
Note: See TracChangeset
for help on using the changeset viewer.
