Hi,<br><br>I don't have any white space in my installation path... and GDCM_USE_FILE contains nothing.<br><br>Here is in detail what I've made on my computer since I've installed linux mandriva 10.2:<br><br>- Download cmake 2.2.0 tarball<br>- Uncompress it in /home/olivier (I then have the directory /home/olivier/cmake-2.2.0)<br>- Open a terminal, going to /home/olivier/cmake-2.2.0 and use thiese commands:<br>               $ ./bootstrap<br>               $ make<br>               $ make install<br>- Create a new directory /home/olivier/GDCM<br>- In a terminal, placed in this directory I do<br>               $ export CVSROOT=:pserver:anonymous@cvs.creatis.insa-lyon.fr:2402/cvs/public   <br>               $ cvs login<br>               ==> anonymous as pass<br>               $ cvs co gdcm  <br>               $ cvs co gdcmData  <br>               $ mkdir gdcmInstall   <br>               $ mkdir gdcmBin<br>               $ cd gdcmBin<br>               $ ccmake ../gdcm<br>        !
       
==> I don't change anything, just hit a couple of times c then g<br>               $ make<br>               $ make install<br><br>Then, I create the directory /home/olivier/Projets/Tmp/dummy/ where I copy the 2 files dummy.cxx and CMakeLists.txt. I create another directory /home/olivier/Projets/Tmp/dymmy-gcc/ and in a terminal placed there I do: ccmake ../dummy, I point GDCM_DIR to /home/olivier/GDCM/gdcm/ and configure. cmake indicates me taht the file GDCMConfig.cmake is not present in /home/olivier/GDCM/gdcm and the reason is that the file is called GDCMConfig.cmake.in. I rename it and repeat de ccmake operation where when I confure it writes:<br><br> CMake Error: Error in cmake code at<br> /home/olivier/Projets/Tmp/dummy/CMakeLists.txt:7:<br> INCLUDE called with wrong number of arguments.  Include only takes one file.<br><br>(the concerned line is INCLUDE(${GDCM_USE_FILE}))<br><br>Hope the details could help you to find the error,<br><br>Thanks for all,<br><br>          
Olivier<br><br>----------------------------------------<br>Hello,<br><br>Have you any whitespace in your gdcm instalation path ??? <br>I'm really wondering what is the content of your GDCM_USE_FILE here.<br><br><br>Can you empty your /home/olivier/Projets/Tmp/dummy-gcc directory, and add <br>a line<br>like<br>MESSAGE(STATUS \";value of GDCM_USE_FILE: ${GDCM_USE_FILE}\";)<br>just before the INCLUDE line<br><br>so that your CMakeLists.txt looks like:<br>#################################<br>FIND_PACKAGE(GDCM REQUIRED)<br><br># Import all settings<br>MESSAGE(STATUS \";value of GDCM_USE_FILE: ${GDCM_USE_FILE}\";)<br>INCLUDE(${GDCM_USE_FILE})<br><br>IF(GDCM_FOUND)<br>   ADD_EXECUTABLE(dummy dummy.cxx)<br>   TARGET_LINK_LIBRARIES(dummy gdcm)<br>ENDIF(GDCM_FOUND)<br>#################################<br><br>Then when executing ccmake, you should see something like:<br>-- Check for working C compiler: gcc -- works<br>-- Check for working CXX compiler: c++ -- works<br>-- value of
GDCM_USE_FILE: /home/olivier/Projets/gdcm/src/GDCMUse.cmake<br>-- Configuring done<br>-- Generating done<br>-- Build files have been written to: /home/olivier/Projets/Tmp/dummy-gcc<br><br><br>just my two cents.<br>JM<br><br><br>dcmlib-bounces@creatis.insa-lyon.fr wrote on 26/07/2005 15:28:18:<br><br>> Hello,<br>> <br>> I've followed your indication on the dummy project. Here is the <br>> error I obtain during the ccmake:<br>> <br>> CMake Error: Error in cmake code at<br>> /home/olivier/Projets/Tmp/dummy/CMakeLists.txt:4:<br>> INCLUDE called with wrong number of arguments. Include only takes one <br>file.<br>> <br>> and here is the concerned line<br>> <br>> INCLUDE(${GDCM_USE_FILE})<br>> <br>> Thanks for all,<br>> Olivier_______________________________________________<br>> Dcmlib mailing list<br>> Dcmlib@creatis.insa-lyon.fr<br>> http://www.creatis.insa-lyon.fr/mailman/listinfo/dcmlib<br><br><br><br>