Re: [CMake] CMake and portable dynamic library loading?

2006-10-16 Thread Alexander Neundorf
Original-Nachricht Datum: Mon, 16 Oct 2006 11:24:58 -0700 (PDT) Von: "Alan W. Irwin" <[EMAIL PROTECTED]> An: Alexander Neundorf <[EMAIL PROTECTED]> Betreff: Re: [CMake] CMake and portable dynamic library loading? > On 2006-10-01 19:01+0200 Alexander Neundorf wrote: > > > > > --

Re: [CMake] How to check/set CMAKE_INSTALL_PREFIX

2006-10-16 Thread Alexander Neundorf
Original-Nachricht Datum: Mon, 16 Oct 2006 14:02:28 -0400 Von: Brad King <[EMAIL PROTECTED]> An: Eric Noulard <[EMAIL PROTECTED]> Betreff: Re: [CMake] How to check/set CMAKE_INSTALL_PREFIX > Eric Noulard wrote: > > What is the good way to change the default value of CMAKE_INSTAL

Re: [CMake] CMake and portable dynamic library loading?

2006-10-16 Thread Alan W. Irwin
Andrey said: On Mon, Oct 16, 2006 at 11:24:58AM -0700, Alan W. Irwin wrote: The obvious solution is to build it internally. When KDE used this library was that the option chosen? True for SIM. If so, could you point me to the CMake files used to build libltdl? We switched from libltdl prior

Re: [CMake] CMake and portable dynamic library loading?

2006-10-16 Thread Andrey Rahmatullin
On Mon, Oct 16, 2006 at 11:24:58AM -0700, Alan W. Irwin wrote: > The obvious solution is to build it internally. When KDE used this > library was that the option chosen? True for SIM. > If so, could you point me to the CMake files used to build libltdl? We switched from libltdl prior to using cm

Re: [CMake] Cmake + Matlab mex

2006-10-16 Thread Wojciech Jarosz
Brad King wrote: FIND_PACKAGE(Matlab) INCLUDE_DIRECTORIES(${MATLAB_INCLUDE_DIR}) ADD_LIBRARY(mymex MODULE mymex.c) TARGET_LINK_LIBRARIES(mymex ${MATLAB_LIBRARIES}) See also "bin/cmake --help-module FindMatlab". It looks like the matlab module is a bit out of date so let us know if you have prob

Re: [CMake] Cmake + Matlab mex

2006-10-16 Thread Brad King
Wojciech Jarosz wrote: > I saw a couple questions regarding this in the archives from a few > years, but no answers. > > I am using CMake for my project, and would now like to write a matlab > mex function which would use my C/C++ code base. I'd like to have the > CMake infrastructure figure out t

[CMake] ctest with SSL?

2006-10-16 Thread Kedzierski, Artur CIV NAVSURFWARCENDIV CORONA
Is there a way to enable SSL in CTest? When I use 'https' URL, I get curl_easy_perform() says: libcurl was built with SSL disabled[...] Thank You. -- Artur Kedzierski smime.p7s Description: S/MIME cryptographic signature ___ CMake mai

Re: [CMake] example of ctest --build-and-test

2006-10-16 Thread William A. Hoffman
At 12:14 PM 10/16/2006, Luigi Calori wrote: >I have the following problem: >a master cmake project that wants to configure and build a series of slave >cmake projects >I' ve tried several hacking but not found an elegant solution. >I' ve read from the list that the > >ctest --build-and-test > > >c

Re: [CMake] How to check/set CMAKE_INSTALL_PREFIX

2006-10-16 Thread Alan W. Irwin
On 2006-10-16 18:22+0200 Eric Noulard wrote: Hi all, I want to setup a default value for CMAKE_INSTALL_PREFIX if the user did not indicate a value. so I put: IF (NOT CMAKE_INSTALL_PREFIX) SET(CMAKE_INSTALL_PREFIX "/opt/${PACKAGE_NAME}-${PACKAGE_VERSION}" CACHE PATH "Install path prefix" FORCE

[CMake] Cmake + Matlab mex

2006-10-16 Thread Wojciech Jarosz
I saw a couple questions regarding this in the archives from a few years, but no answers. I am using CMake for my project, and would now like to write a matlab mex function which would use my C/C++ code base. I'd like to have the CMake infrastructure figure out the correct -I,-L,-l flags to pa

Re: [CMake] CMake and portable dynamic library loading?

2006-10-16 Thread Alan W. Irwin
On 2006-10-01 19:01+0200 Alexander Neundorf wrote: Original-Nachricht Datum: Sun, 1 Oct 2006 13:00:23 +0600 Von: Andrey Rahmatullin <[EMAIL PROTECTED]> An: cmake@cmake.org Betreff: Re: [CMake] CMake and portable dynamic library loading? On Sat, Sep 30, 2006 at 08:34:58AM -07

Re: [CMake] example of ctest --build-and-test

2006-10-16 Thread Brad King
Luigi Calori wrote: > I have the following problem: > a master cmake project that wants to configure and build a series of > slave cmake projects > I' ve tried several hacking but not found an elegant solution. > I' ve read from the list that the > > ctest --build-and-test > > > could be used fo

Re: [CMake] How to check/set CMAKE_INSTALL_PREFIX

2006-10-16 Thread Brad King
Eric Noulard wrote: > What is the good way to change the default value of CMAKE_INSTALL_PREFIX > besides the usual: This question has come up several times and I've been deferring a fix until a project-specified initial cache feature is implemented. That feature has been delayed because it is tri

[CMake] How to check/set CMAKE_INSTALL_PREFIX

2006-10-16 Thread Eric Noulard
Hi all, I want to setup a default value for CMAKE_INSTALL_PREFIX if the user did not indicate a value. so I put: IF (NOT CMAKE_INSTALL_PREFIX) SET(CMAKE_INSTALL_PREFIX "/opt/${PACKAGE_NAME}-${PACKAGE_VERSION}" CACHE PATH "Install path prefix" FORCE) ELSE (NOT CMAKE_INSTALL_PREFIX) MESSAGE("CM

[CMake] example of ctest --build-and-test

2006-10-16 Thread Luigi Calori
I have the following problem: a master cmake project that wants to configure and build a series of slave cmake projects I' ve tried several hacking but not found an elegant solution. I' ve read from the list that the ctest --build-and-test could be used for that but did not found any example: