Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
S
src
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
6
Issues
6
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Code Review
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
H5hut
src
Commits
b1e8e15b
Commit
b1e8e15b
authored
Aug 12, 2011
by
adelmann
🎗
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix more stuff
parent
8862acd0
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
4415 additions
and
4519 deletions
+4415
-4519
tools/H5PartMerge/autogen.sh
tools/H5PartMerge/autogen.sh
+1
-3
tools/H5PartMerge/configure
tools/H5PartMerge/configure
+3903
-4002
tools/H5PartMerge/configure.ac
tools/H5PartMerge/configure.ac
+16
-16
tools/H5PartMerge/src/H5merge.cpp
tools/H5PartMerge/src/H5merge.cpp
+171
-172
tools/Makefile.am
tools/Makefile.am
+3
-1
tools/h5PartSurfaceToVtk.cc
tools/h5PartSurfaceToVtk.cc
+321
-325
No files found.
tools/H5PartMerge/autogen.sh
View file @
b1e8e15b
...
...
@@ -3,7 +3,5 @@
aclocal
autoconf
automake
-a
-c
./configure
--prefix
=
$HOME
--with-h5part
=
$HOME
--enable-boost
make
#make install
tools/H5PartMerge/configure
View file @
b1e8e15b
This diff is collapsed.
Click to expand it.
tools/H5PartMerge/configure.ac
View file @
b1e8e15b
...
...
@@ -69,31 +69,31 @@ AC_LANG_PUSH(C)
[AC_MSG_ERROR(hdf5 library not found!)]
)
H5
PAR
T_PREFIX=""
H5
PAR
T_INCL_PATH=""
H5
PAR
T_LIB_PATH=""
H5
HU
T_PREFIX=""
H5
HU
T_INCL_PATH=""
H5
HU
T_LIB_PATH=""
AC_ARG_WITH(
[h5
par
t],
AC_HELP_STRING([--with-h5
par
t=PREFIX],
[prefix, parent directory, where the serial(!) h5
par
t library and header files can be found]),
[H5
PAR
T_PREFIX=$withval
H5
PART_INCL_PATH=${H5PAR
T_PREFIX}"/include "
H5
PART_LIB_PATH=${H5PAR
T_PREFIX}"/lib "]
[h5
hu
t],
AC_HELP_STRING([--with-h5
hu
t=PREFIX],
[prefix, parent directory, where the serial(!) h5
hu
t library and header files can be found]),
[H5
HU
T_PREFIX=$withval
H5
HUT_INCL_PATH=${H5HU
T_PREFIX}"/include "
H5
HUT_LIB_PATH=${H5HU
T_PREFIX}"/lib "]
)
if test "${H5
PAR
T_PREFIX}" != ""; then
CPPFLAGS=${CPPFLAGS}" -I"${H5
PAR
T_INCL_PATH};
LDFLAGS=${LDFLAGS}" -L"${H5
PAR
T_LIB_PATH};
if test "${H5
HU
T_PREFIX}" != ""; then
CPPFLAGS=${CPPFLAGS}" -I"${H5
HU
T_INCL_PATH};
LDFLAGS=${LDFLAGS}" -L"${H5
HU
T_LIB_PATH};
fi
AC_CHECK_HEADERS(
[H5
Par
t.h],
[H5
hu
t.h],
[],
[AC_MSG_ERROR(H5
Par
t.h not found!)]
[AC_MSG_ERROR(H5
hu
t.h not found!)]
)
AC_CHECK_LIB(
[H5
Par
t],
[H5
hu
t],
[main],
[],
[AC_MSG_ERROR(H5
Par
t library not found!)]
[AC_MSG_ERROR(H5
hu
t library not found!)]
)
AC_LANG_POP
AC_LANG(C++)
...
...
tools/H5PartMerge/src/H5merge.cpp
View file @
b1e8e15b
This diff is collapsed.
Click to expand it.
tools/Makefile.am
View file @
b1e8e15b
...
...
@@ -9,7 +9,7 @@ INCLUDES = -I../src/include @INCLUDES@
# What to build... make install will place these files in the $(prefix)/bin directory.
bin_PROGRAMS
=
@BUILD_TOOLS@
EXTRA_PROGRAMS
=
h5pAttrib h5PartDcToVtk
EXTRA_PROGRAMS
=
h5pAttrib h5PartDcToVtk
h5PartSurfaceToVtk
# Listing of all programs that maybe built. (Has to know statically...)
EXTRA_SCRIPTS
=
h5hutcc
...
...
@@ -26,5 +26,7 @@ h5pAttrib_SOURCES = h5pAttrib.cc
h5PartDcToVtk_SOURCES
=
h5PartDcToVtk.cc
h5PartSurfaceToVtk_SOURCES
=
h5PartSurfaceToVtk.cc
clean
:
clean-am
tools/h5PartSurfaceToVtk.cc
View file @
b1e8e15b
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment