# - automatically handled libraries or packages : wx, vtk... (see above)
# - the dirs automatically set by other libraries found by FIND_PACKAGE
../std/src
- #/usr/local/include/gdcm/
# The path to the build tree folder is needed to find bbstd_EXPORT.h
${PROJECT_BINARY_DIR}/packages/std/src
)
SET(${BBTK_PACKAGE_NAME}_LIBS
# LIST HERE THE ADDITIONAL LIBS TO LINK AGAINST
# EXCEPT : the same libs than for INCLUDE_DIRS
- #/usr/local/lib/gdcm/libvtkgdcm.so
)
#===========================================================================
BBTK_BLACK_BOX_IMPLEMENTATION(GetInfoGdcmReader,bbtk::AtomicBlackBox);
void GetInfoGdcmReader::Process()
{
-std::cout << "Entree ds GetInfoGdcmReader::Process()" << std::endl;
f = GDCM_NAME_SPACE::File::New();
f->SetFileName( bbGetInputIn() );
bool res = f->Load();
if ( !res )
{
-std::cout << " f->Load() failed ..." << std::endl;
f->Delete();
bbSetOutputOut(0);
return;
}
-std::cout << "apres f->Load()" << std::endl;
int i;
std::vector<double> v_iop;