[CMake] Patch: Add NO_CACHE option to find_xxx commands

2008-07-06 Thread Miguel A. Figueroa-Villanueva
Hello, I would like to propose the addition of a NO_CACHE keyword to the find_xxx commands that would treat as a non-cached variable. I have posted this as a feature request with an initial patch implementing it for the find_path command. For more information look at the feature request at: http

Re: [CMake] How to find wxWidgets with cmake under Windows?

2008-07-06 Thread Miguel A. Figueroa-Villanueva
On Sun, Jul 6, 2008 at 7:36 AM, Bob Paddock wrote: > On Sunday 06 July 2008 03:40:15 am Miguel A. Figueroa-Villanueva wrote: > >> For unix and windows the CMakeLists.txt file >> should work transparently. It is just that it finds things >> differently. With windows it searches for it according to t

Re: [CMake] How to find wxWidgets with cmake under Windows?

2008-07-06 Thread Bob Paddock
On Sunday 06 July 2008 03:40:15 am Miguel A. Figueroa-Villanueva wrote: > For unix and windows the CMakeLists.txt file > should work transparently. It is just that it finds things > differently. With windows it searches for it according to the standard > places and finds each lib, etc. In unix (an

Re: [CMake] Find PerlLibs fails;

2008-07-06 Thread Georgios Petasis
O/H Alexander Neundorf ??: On Monday 30 June 2008, Georgios Petasis wrote: Hi all, I am running cmake 2.6 under windows: MESSAGE ( STATUS "Searching for Perl..." ) FIND_PACKAGE ( Perl ) FIND_PACKAGE ( PerlLibs ) IF ( PERL_FOUND ) MESSAGE ( STATUS " PERL_EXECUTABLE:" ${PERL_EX

Re: [CMake] Visual Studio and Windows Mobile SDKs

2008-07-06 Thread Alexander Neundorf
On Monday 30 June 2008, Andreas Pokorny wrote: > Hi, > > Why is there a Windows-cl.cmake and no Window-msvc.cmake? In cmake < 2.6 this filename was composed from CMAKE_SYSTEM_NAME and the basename of the compiler (cl.exe, also with Visual Studio). In cmake 2.6 this was extended and now compilers

Re: [CMake] Visual Studio and Windows Mobile SDKs

2008-07-06 Thread Alexander Neundorf
On Friday 04 July 2008, Clemens Arth wrote: > Hi, > > here's a short progress report. I've now managed to get my project compiled > with Visual Studio 2008 with and without support for Windows Mobile 5 SDK; Cool :-) > I basically managed that by compiling cmake from scratch, introducing a new > p

Re: [CMake] Visual Studio and Windows Mobile SDKs

2008-07-06 Thread Alexander Neundorf
On Friday 04 July 2008, Clemens Arth wrote: ... > ad 2/3) In my case the SDK name would be "Windows Mobile 5.0 Pocket PC SDK > (ARMV4I)"; alternatively, it might be "Windows Mobile 5.0 Smartphone SDK > (ARMV4I)" or "Windows Mobile 6 Professional SDK" something for WM6, but > anyway, I can only use

Re: [CMake] Find PerlLibs fails;

2008-07-06 Thread Alexander Neundorf
On Monday 30 June 2008, Georgios Petasis wrote: > Hi all, > > I am running cmake 2.6 under windows: > > MESSAGE ( STATUS "Searching for Perl..." ) > FIND_PACKAGE ( Perl ) > FIND_PACKAGE ( PerlLibs ) > IF ( PERL_FOUND ) > MESSAGE ( STATUS " PERL_EXECUTABLE:" ${PERL_EXECUTABLE} ) > MESS

Re: [CMake] How to find wxWidgets with cmake under Windows?

2008-07-06 Thread Miguel A. Figueroa-Villanueva
On Sat, Jul 5, 2008 at 9:17 PM, Bob Paddock wrote: > >> Ok, the problem is that you are finding wxWidgets "Unix Style"... > > I started with a CMakeLists.txt file from Linux, where it > works fine. Is that bad? I'm trying to build with Mingw32-gcc. > > This part of what I have: > > # Find package