Re: RIF: [CMake] kdevelop problems

2006-11-03 Thread Alexander Neundorf
Original-Nachricht Datum: Fri, 3 Nov 2006 03:22:50 +0100 (MET) Von: Luigi Calori <[EMAIL PROTECTED]> An: cmake@cmake.org Betreff: Re: RIF: [CMake] kdevelop problems > Bill Hoffman wrote: > > > Luigi Calori wrote: > > > >> I' ve used CVS CMake but it seems not to solve the prob

RE: [CMake] AIX 64bit xlC

2006-11-03 Thread Brian Little
I don't know anything about AIX 64bit, but if -X 64 is a compiler flag, try using: SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -X 64" CACHE STRING "" FORCE ) SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -X 64" CACHE STRING "" FORCE ) I know that is how I've added compiler flags to MSVS builds. Also, http://ww

RE: [CMake] generate VC project w/o VS installed.

2006-11-03 Thread Brian Little
I am no CMake expert, but I don’t believe you will be able to generate for a build tool you do not have installed.  When you first run CMake for a new build tool it performs some checks on the compiler (like determining the size of void *) which requires it to actually compile a small progr

Re: [CMake] generate VC project w/o VS installed.

2006-11-03 Thread Sylvain Benner
 你好!   If this feature is not directly supported by CMake, there is a work around.   Run CMake in an environment with Visual Studio installed and back up the cache files (folderCMakeFiles and file CMakeCache.txt). Then copy these files on your computer which does not have Visual Studio inst

re: [CMake] Mac application bundles & resources

2006-11-03 Thread Axel Roebel
On Friday 03 November 2006 14:03, [EMAIL PROTECTED] wrote: > Message: 1 > Date: Thu, 2 Nov 2006 21:44:32 + > From: Matthew J Smith <[EMAIL PROTECTED]> > Subject: [CMake] Mac application bundles & resources > To: cmake@cmake.org > Message-ID: <[EMAIL PROTECTED]> > Content-Type: text/plain; char

Re: [CMake] AIX 64bit xlC

2006-11-03 Thread Brian Macy
Brian, Thanks for the quick response. It is a flag for /usr/ccs/bin/ar to build libraries. Brian Macy Brian Little wrote: I don't know anything about AIX 64bit, but if -X 64 is a compiler flag, try using: SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -X 64" CACHE STRING "" FORCE ) SET(CMAKE_CXX_FLA

[CMake] CPack RPM support

2006-11-03 Thread Eric Noulard
I'd like to know if someone is working on RPM generator for CPack and if yes in which state is this generator? I would be interested in both source and binary RPM support. -- Erk ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/list

Re: [CMake] cache variable prevents FIND_LIBRARY to be called again :/

2006-11-03 Thread Alan W. Irwin
On 2006-11-01 16:39-0500 Tristan Carel wrote: On 11/1/06, Tristan Carel <[EMAIL PROTECTED]> wrote: On 11/1/06, Brad King <[EMAIL PROTECTED]> wrote: > SET(MYLIB) > FIND_LIBRARY(MYLIB ...) It doesn't seem to work, the cache value is not updated. Ok it works if I set SET(PYTHON_LIBRARIES PYTHON

Re: [CMake] cache variable prevents FIND_LIBRARY to be called again :/

2006-11-03 Thread Bill Hoffman
Alan W. Irwin wrote: On 2006-11-01 16:39-0500 Tristan Carel wrote: On 11/1/06, Tristan Carel <[EMAIL PROTECTED]> wrote: On 11/1/06, Brad King <[EMAIL PROTECTED]> wrote: > SET(MYLIB) > FIND_LIBRARY(MYLIB ...) It doesn't seem to work, the cache value is not updated. Ok it works if I set SET(P