From: Juan Prieto Date: Tue, 18 Aug 2009 01:45:01 +0000 (+0000) Subject: creaMaracasVisu X-Git-Tag: EED.02Oct2009~7 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=f212ff2c82487b560f063b0c1d5951841ffe857e;p=crea.git creaMaracasVisu --- diff --git a/cmake/CREAMacro_FindAndUseVTK.cmake b/cmake/CREAMacro_FindAndUseVTK.cmake index db00d5c..50dfe5b 100644 --- a/cmake/CREAMacro_FindAndUseVTK.cmake +++ b/cmake/CREAMacro_FindAndUseVTK.cmake @@ -5,6 +5,7 @@ MACRO(CREA_FIND_AND_USE_VTK) FIND_PACKAGE(VTK) # If vtk found IF(VTK_FOUND) + MESSAGE ( STATUS "=======================================") MESSAGE ( STATUS "Looking for VTK... found") MESSAGE ( STATUS "* Dir = ${VTK_DIR}") diff --git a/src/creaSystem.cxx b/src/creaSystem.cxx index 9f917e5..65311af 100644 --- a/src/creaSystem.cxx +++ b/src/creaSystem.cxx @@ -43,7 +43,12 @@ namespace crea return isatty(fileno(stdin)); } #endif - +std::string System::GetDllAppPath(std::string nom){ + std::string path = "."; +#ifdef WIN32 +#endif + return path; +} int System::GetAppPath(char *pname, size_t pathsize) { #ifdef LINUX diff --git a/src/creaSystem.h b/src/creaSystem.h index 761e942..9ca8c93 100644 --- a/src/creaSystem.h +++ b/src/creaSystem.h @@ -3,8 +3,8 @@ Program: crea Module: $RCSfile: creaSystem.h,v $ Language: C++ - Date: $Date: 2009/06/19 14:00:23 $ - Version: $Revision: 1.3 $ + Date: $Date: 2009/08/18 01:45:04 $ + Version: $Revision: 1.4 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -227,6 +227,7 @@ namespace crea /// returns true iff the program has a tty static int HasTTY(); CREA_EXPORT static int GetAppPath(char *pname, size_t pathsize); + CREA_EXPORT static std::string GetDllAppPath(std::string nom); }; } // namespace crea