Skip to content

Commit f867361

Browse files
committed
Move H5FDdsm source files to src - Update CMakeLists.txt consequently
Add README.txt and COPYING files
1 parent df8f16d commit f867361

32 files changed

+49
-21
lines changed

CMakeLists.txt

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -134,16 +134,16 @@ ENDIF (WIN32)
134134
# Configure our module header file
135135
#-----------------------------------------------------------------------------
136136
CONFIGURE_FILE(
137-
${H5FDdsm_SOURCE_DIR}/H5FDdsmConfig.h.in
138-
${H5FDdsm_BINARY_DIR}/H5FDdsmConfig.h
137+
${H5FDdsm_SOURCE_DIR}/src/H5FDdsmConfig.h.in
138+
${H5FDdsm_BINARY_DIR}/src/H5FDdsmConfig.h
139139
)
140140

141141
#-----------------------------------------------------------------------------
142142
# Include all directories used by this source
143143
#-----------------------------------------------------------------------------
144-
INCLUDE_DIRECTORIES(${H5FDdsm_SOURCE_DIR})
144+
INCLUDE_DIRECTORIES(${H5FDdsm_SOURCE_DIR}/src)
145145
INCLUDE_DIRECTORIES(${H5FDdsm_SOURCE_DIR}/h5dump)
146-
INCLUDE_DIRECTORIES(${H5FDdsm_BINARY_DIR})
146+
INCLUDE_DIRECTORIES(${H5FDdsm_BINARY_DIR}/src)
147147

148148
#-----------------------------------------------
149149
# Setup some convenience flags depending on machine
@@ -161,20 +161,20 @@ ENDIF(COMPUTERNAME)
161161
# Specify project source files
162162
#-----------------------------------------------------------------------------
163163
SET(H5FDdsmSources
164-
H5FDdsm.cxx
165-
H5FDdsmBuffer.cxx
166-
H5FDdsmComm.cxx
167-
H5FDdsmCommMpi.cxx
168-
H5FDdsmCommSocket.cxx
169-
H5FDdsmDriver.cxx
170-
H5FDdsmIniFile.cxx
171-
H5FDdsmObject.cxx
172-
H5FDdsmMsg.cxx
173-
H5FDdsmSocket.cxx
174-
H5FDdsmStorage.cxx
175-
H5FDdsmManager.cxx
176-
H5FDdsmDump.cxx
177-
H5FDdsmSteerer.cxx
164+
src/H5FDdsm.cxx
165+
src/H5FDdsmBuffer.cxx
166+
src/H5FDdsmComm.cxx
167+
src/H5FDdsmCommMpi.cxx
168+
src/H5FDdsmCommSocket.cxx
169+
src/H5FDdsmDriver.cxx
170+
src/H5FDdsmIniFile.cxx
171+
src/H5FDdsmObject.cxx
172+
src/H5FDdsmMsg.cxx
173+
src/H5FDdsmSocket.cxx
174+
src/H5FDdsmStorage.cxx
175+
src/H5FDdsmManager.cxx
176+
src/H5FDdsmDump.cxx
177+
src/H5FDdsmSteerer.cxx
178178
# TODO Find the correct place for h5Dump
179179
h5dump/h5dump.cxx
180180
h5dump/h5tools.cxx
@@ -226,8 +226,8 @@ ENDIF(H5FD_DSM_BUILD_TESTING)
226226
#-----------------------------------------------------------------------------
227227
INSTALL (
228228
FILES
229-
${CMAKE_CURRENT_SOURCE_DIR}/H5FDdsm.h
230-
${H5FDdsm_BINARY_DIR}/H5FDdsmConfig.h
229+
${CMAKE_CURRENT_SOURCE_DIR}/src/H5FDdsm.h
230+
${H5FDdsm_BINARY_DIR}/src/H5FDdsmConfig.h
231231
DESTINATION
232232
include
233233
COMPONENT
@@ -273,7 +273,7 @@ EXPORT (
273273
# Configure the HDF5-config.cmake file for the build directory
274274
#-----------------------------------------------------------------------------
275275
SET (H5FD_DSM_INCLUDES_BUILD_TIME
276-
${H5FDdsm_SOURCE_DIR}
276+
${H5FDdsm_SOURCE_DIR}/src
277277
${H5FDdsm_SOURCE_DIR}/h5dump
278278
)
279279

COPYING

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Copyright (C) CSCS - Swiss National Supercomputing Centre.
2+
You may use modify and and distribute this code freely providing
3+
1) This copyright notice appears on all copies of source code
4+
2) An acknowledgment appears with any substantial usage of the code
5+
3) If this code is contributed to any other open source project, it
6+
must not be reformatted such that the indentation, bracketing or
7+
overall style is modified significantly.
8+
9+
This software is distributed WITHOUT ANY WARRANTY; without even the
10+
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11+
-----------------------------------------------------------------------------
12+
This work has received funding from the European Community's Seventh
13+
Framework Programme (FP7/2007-2013) under grant agreement 225967 “NextMuSE”
14+

README.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
H5FDdsm version 0.9.4 currently under development
2+
Please refer to https://hpcforge.org/plugins/mediawiki/wiki/h5fddsm/index.php/Main_Page for installation instructions.
3+
------------------------------------------------------------------------------
4+
5+
A mailing list is currently set up for H5FDdsm users.
6+
7+
To subscribe to the list, send mail to the following address:
8+
9+
10+
Messages sent to the list should be addressed to:
11+
12+
13+
The H5FDdsm website is located at http://hpcforge.org/projects/h5fddsm
14+
File renamed without changes.

H5FDdsm.h renamed to src/H5FDdsm.h

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)