Re: [CMake] Building boost app on Mac OS

2009-01-21 Thread kafou nmento
Hi and thank you for the reply. The root of boost is on /Volumes/Developer/Applications (I'm novice on Mac so I hope this path exists on all Mac OS)   I set BOOST_ROOT to /Volumes/Developer/Applications/boost_1_34_1 and BOOST_INCUDEDIR to /Volumes/Developer/Applications/boost_1_34_1/boost   Now

Re: [CMake] Building boost app on Mac OS

2009-01-21 Thread kafou nmento
Thank you! I do that. --- En date de : Mer 21.1.09, Philip Lowman phi...@yhbt.com a écrit : De: Philip Lowman phi...@yhbt.com Objet: Re: [CMake] Building boost app on Mac OS À: ngondor...@yahoo.fr Cc: cmake@cmake.org Date: Mercredi 21 Janvier 2009, 5h14 On Tue, Jan 20, 2009 at 2:11 PM, kafou

[CMake] DLL Question

2009-01-21 Thread Zein Salah
Hello, I am building a program with CMake and compiling it with visual studio 2005 (VC 8). The program needs some .dll files which do not exist in the output directory in which the output executable file is written. So when I run the program, I get the message that a dll file is missing etc.

Re: [CMake] DLL Question

2009-01-21 Thread Werner Smekal
Hi, I am building a program with CMake and compiling it with visual studio 2005 (VC 8). The program needs some .dll files which do not exist in the output directory in which the output executable file is written. So when I run the program, I get the message that a dll file is missing etc.

[CMake] How to link the third party libraries into the project?

2009-01-21 Thread Ram Mulage
Hi All, I am using boost library in my project and I want to link the boost static libraries into my project. How do i do this? My project directory looks as below and each of the directories has the CMakeLists.txt file. Project |-Lib1 |-Lib2 |-Application I am using the some of the

[CMake] how to link intel fortran libraries static

2009-01-21 Thread Roland Krause
Greetings, I'm working on CMake support for a very large Fortran code. We are linking nearly everything static, especially the Intel Fortran libraries but I can't seem to find the flag to do this in the CMake documentation (looked at CMake-2.6.x online). I've found SET(CMAKE_DL_LIBS dl) in the

Re: [CMake] How to link the third party libraries into the project?

2009-01-21 Thread Alexander Neundorf
On Wednesday 21 January 2009, Ram Mulage wrote: Hi All, I am using boost library in my project and I want to link the boost static libraries into my project. How do i do this? My project directory looks as below and each of the directories has the CMakeLists.txt file. Project |-Lib1

Re: [CMake] How to link the third party libraries into the project?

2009-01-21 Thread Michael Jackson
On Jan 21, 2009, at 3:19 PM, Alexander Neundorf wrote: On Wednesday 21 January 2009, Ram Mulage wrote: Hi All, I am using boost library in my project and I want to link the boost static libraries into my project. How do i do this? My project directory looks as below and each of the

Re: [CMake] How to link the third party libraries into the project?

2009-01-21 Thread Adam Weiss
On Wed, Jan 21, 2009 at 3:27 PM, Michael Jackson mike.jack...@bluequartz.net wrote: On Jan 21, 2009, at 3:19 PM, Alexander Neundorf wrote: On Wednesday 21 January 2009, Ram Mulage wrote: Hi All, I am using boost library in my project and I want to link the boost static libraries into my

[CMake] ActiveQt

2009-01-21 Thread Pau Garcia i Quiles
Hello, Does FindQt4.cmake support ActiveQt (only available in Qt4 for Windows, commercial edition) ? It looks like it does not because I don't see a QT_USE_ACTIVEQT variable, and it does not look for QAxContainer or QAxServer -- Pau Garcia i Quiles http://www.elpauer.org (Due to my workload, I

Re: [CMake] ActiveQt

2009-01-21 Thread Clinton Stimpson
It doesn't support ActiveQt, but patches are welcome. Clint Pau Garcia i Quiles wrote: Hello, Does FindQt4.cmake support ActiveQt (only available in Qt4 for Windows, commercial edition) ? It looks like it does not because I don't see a QT_USE_ACTIVEQT variable, and it does not look for

Re: [CMake] ActiveQt

2009-01-21 Thread Pau Garcia i Quiles
On Wed, Jan 21, 2009 at 10:28 PM, Clinton Stimpson clin...@elemtech.com wrote: You'll have them tomorrow, against current CVS. Thanks. It doesn't support ActiveQt, but patches are welcome. Clint Pau Garcia i Quiles wrote: Hello, Does FindQt4.cmake support ActiveQt (only available in Qt4

[CMake] Errors when creating a share library for Qt-application ?

2009-01-21 Thread Kermit Mei
Hello, I want to use the following files under the directory gui to creat a share library named FreeReciteGui.so . $ tree gui |-- CMakeLists.txt |-- MainWindow.cpp |-- MainWindow.h |-- MainWindow.ui |-- ReciterWidget.cpp |-- ReciterWidget.h |-- ScannerWidget.cpp |-- ScannerWidget.h |--

[CMake] Issue with list( REMOVE_DUPLICATES )

2009-01-21 Thread Robert Dailey
Hi, I'm running the following command in CMake 2.6: list( REMOVE_DUPLICATES ${list_var} ) When I compile this script, I get the following error: CMake Error at CMakeLists.txt:103 (list): list sub-command REMOVE_DUPLICATES requires list to be present. I'm not sure why this is happening.

Re: [CMake] how to link intel fortran libraries static

2009-01-21 Thread Michael Wild
On 21. Jan, 2009, at 19:05, Roland Krause wrote: Greetings, I'm working on CMake support for a very large Fortran code. We are linking nearly everything static, especially the Intel Fortran libraries but I can't seem to find the flag to do this in the CMake documentation (looked at

[CMake] Obtaining dependencies of static libraries

2009-01-21 Thread Robert Dailey
Hi, The documentation for LINK_INTERFACE_LIBRARIES (Target property) clearly states that this is ignored for static libraries. However, I need to get the list that was passed into target_link_libraries() for that static library project. How can I obtain this list? I'm doing the following: