-
-
Notifications
You must be signed in to change notification settings - Fork 675
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BUG: itkhdf5 installed paths were incorrect with recent hdf5 versions
The aliasing for the build tree was incorrectly matched to install tree file name directory for H5Cpp.h. \#include "itkhdf5/itk_H5Cpp.h" Resulted in an error of missing headerfile "itkhdf5/cpp/H5cpp.h" when building against an installed version of ITK.
- Loading branch information
1 parent
3192eb2
commit 9e0d33c
Showing
3 changed files
with
7 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/* This allows itk_H5Cpp.h to include itkhdf5/H5Cpp.h in the ITK build tree. | ||
Do NOT install this header. */ | ||
#include "../c++/src/H5Cpp.h" | ||
/* NOTE: The file 'c++/src/H5Cpp.h' is installed as '{INSTALL_PREFIX}/itkhdf5/H5Cpp.h' | ||
* so that this local alias is not needed in the install tree. */ | ||
|
This file was deleted.
Oops, something went wrong.