[CMake] override CMAKE_COMMAND

2008-01-09 Thread Levy, Chen
Hello, List. I have CMake v2.4.7 running on SunOS 5.8 from the binary SunOS tar.gz file, but I was unable to patch the libCrun.so.1 libCstd.so.1 on that box. So here what I have done: 0. I have put the CMake distributions in: /some/path/cmake 1. I have copied correct libCrun.so.1 libCstd.so.1 i

[CMake] Visual Studio Linker

2008-01-09 Thread Ivan Chupahin
Hello, everyone! I have occur need to change Visual Studio linker (link.exe) to some other external linker while build project by nmake. How i can do it by CMake? ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake

[CMake] e-mail

2008-01-09 Thread Ivan Chupahin
[EMAIL PROTECTED] ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] cmake 2.4.8 RC 10

2008-01-09 Thread Bill Hoffman
David Thulson wrote: Hello, This is my first post to the cmake mailing list, so I hope it works... I downloaded the 2.4.8 RC 11 for OS X and for what it is worth it appears to work just as well as 2.4.7. In both 2.4.7 and 2.4.8 RC 11 I have some serious issues with the Xcode generator. I

Re: [CMake] cmake 2.4.8 RC 10

2008-01-09 Thread David Thulson
Hello, This is my first post to the cmake mailing list, so I hope it works... I downloaded the 2.4.8 RC 11 for OS X and for what it is worth it appears to work just as well as 2.4.7. In both 2.4.7 and 2.4.8 RC 11 I have some serious issues with the Xcode generator. I just bought my first Mac (

Re: [CMake] cmake 2.4.8 RC 10

2008-01-09 Thread Alan W. Irwin
On 2008-01-09 16:17-0500 Bill Hoffman wrote: Alan W. Irwin wrote: Anyway, just in case anything fell between the cracks for your tests, I just now built RC 11 using the ./bootstrap script and tried a build of the svn trunk version of PLplot using that resulting RC 11 version of CMake. Every

Re: [CMake] cmake 2.4.8 RC 10

2008-01-09 Thread Bill Hoffman
Alan W. Irwin wrote: Anyway, just in case anything fell between the cracks for your tests, I just now built RC 11 using the ./bootstrap script and tried a build of the svn trunk version of PLplot using that resulting RC 11 version of CMake. Everything was fine for the cmake build and the PLpl

Re: [CMake] cmake 2.4.8 RC 10

2008-01-09 Thread Alan W. Irwin
On 2008-01-09 15:16-0500 Bill Hoffman wrote: On 2008-01-09 11:25-0800 Alan W. Irwin wrote: Hi Bill: The tar.gz and tar.Z form of the source package for RC 11 seems to be missing at http://www.cmake.org/files/v2.4/ . [...] OK, all the files should be there now. The .zip won't work because it

Re: [CMake] cmake 2.4.8 RC 10

2008-01-09 Thread Bill Hoffman
Alan W. Irwin wrote: On 2008-01-09 11:25-0800 Alan W. Irwin wrote: Hi Bill: The tar.gz and tar.Z form of the source package for RC 11 seems to be missing at http://www.cmake.org/files/v2.4/ . I tried to work around that issue by using cmake-2.4.8-RC-11.zip. The Linux unzip command seemed t

Re: [CMake] cmake 2.4.8 RC 10

2008-01-09 Thread Alan W. Irwin
On 2008-01-09 11:25-0800 Alan W. Irwin wrote: Hi Bill: The tar.gz and tar.Z form of the source package for RC 11 seems to be missing at http://www.cmake.org/files/v2.4/ . I tried to work around that issue by using cmake-2.4.8-RC-11.zip. The Linux unzip command seemed to work without obvious

Re: [CMake] cmake 2.4.8 RC 10

2008-01-09 Thread Alan W. Irwin
On 2008-01-09 12:51-0500 Bill Hoffman wrote: Bill Hoffman wrote: Did you decide to remove the 'ability to select install location for mac'? opps, I forgot RC 11... OK, RC 11 is up now, and the mac install location stuff is now gone. If I don't here anything more, I will make the

Re: [CMake] cmake 2.4.8 RC 10

2008-01-09 Thread Bill Hoffman
Bill Hoffman wrote: Did you decide to remove the 'ability to select install location for mac'? opps, I forgot RC 11... OK, RC 11 is up now, and the mac install location stuff is now gone. If I don't here anything more, I will make the official 2.4.8 on Thursday or Friday. -Bill

[CMake] Help with INSTALL and Qt4 packages

2008-01-09 Thread Mike Jackson
I have put together my program and would like to create an "install" of the package. I have my installation working just fine on OS X but I am a bit "wet behind the ears" when it comes to Windows XP. Basically I built Qt4 as dynamic libraries and now I guess I need to copy all those .dll and lib fi

[CMake] Re: Creating a fully escaped Windows Path from a cmake path

2008-01-09 Thread Mike Jackson
Nevermind.. I searched through the docs and found the STRING ( ) command set. IF (WIN32) STRING(REPLACE "\\" "" DATAIMPORT_TEST_IMPORT_XML_FILE ${DATAIMPORT_TEST_IMPORT_XML_FILE} ) ENDIF(WIN32) Sorry for the noise. Mike On Jan 9, 2008 10:04 AM, Mike Jackson <[EMAIL PROTECTE

[CMake] Creating a fully escaped Windows Path from a cmake path

2008-01-09 Thread Mike Jackson
I need to create a c string based on a file system path. Currently I have the following in my CMakeLists.txt file: FILE (TO_NATIVE_PATH "${CMAKE_BINARY_DIR}/DataImportTest.xml" DATAIMPORT_TEST_IMPORT_XML_FILE) Then in a configuration file: #define DATAIMPORT_TEST_IMPORT_XML_FILE "@DATAIMPORT_TES