Re: [CMake] windows mobile visual studio 2005 project files

2007-12-01 Thread Alexander Adam
Hi, Well, yes that's certainly possible yet AFAIK you need a WinMain at least, I can't get anything else compiled on Windows CE / Mobile.. Alex On Nov 30, 2007 12:08 AM, Hendrik Sattler <[EMAIL PROTECTED]> wrote: > Am Donnerstag 29 November 2007 schrieb Alexander Adam: > > > You can't build the

Re: [CMake] Can't get cmake to do debug build with wxwidgets

2007-12-01 Thread Miguel A. Figueroa-Villanueva
On Nov 30, 2007 1:43 PM, Joseph Garvin wrote: > Under windows, everything works fine. However, trying to build my project on > Linux, I think that cmake isn't properly setting up linking against the > debug versions of the wxwidgets libraries. wxWidgets has a function, > wxLogDebug, that prints tex

[CMake] CMake and SWIG and several broken modules

2007-12-01 Thread Hendrik Sattler
Hi, I trie to use cmake for an already existing project that currently uses autotools. There are several problems and some are related to bugs in module files or missing module features. The bugs are reported here as they are easy to fix and I don't want to do yet-another-registration: * the

Re: [CMake] CMake and SWIG and several broken modules

2007-12-01 Thread Hendrik Sattler
Am Samstag 01 Dezember 2007 schrieb Hendrik Sattler: > * The UseSWIG.cmake module: > - uses it's first argument as target name for the module and thus also > as output name, better: > - combine target name with the current language and set OUTPUT_NAME > property on target to the

[CMake] How to pass a write-parameter to a "MACRO"?

2007-12-01 Thread Steven Van Ingelgem
What I want to do is to pass a parameter to a macro which will be "SET" at the end of the macro. In fact I want it to behave a little as a "function" with it's own variable scope. Does anyone know how I could do that? Thanks, Steven ___ CMake mailing l

Re: [CMake] How to pass a write-parameter to a "MACRO"?

2007-12-01 Thread Brandon Van Every
On Dec 1, 2007 3:13 PM, Steven Van Ingelgem <[EMAIL PROTECTED]> wrote: > What I want to do is to pass a parameter to a macro which will be > "SET" at the end of the macro. > In fact I want it to behave a little as a "function" with it's own > variable scope. > > Does anyone know how I could do that

[CMake] CMake does not recurse subdirectores

2007-12-01 Thread Sumit Kumar
Hello I have written a CMakeLists.txt which calls several individual CMakeLists.txt files in subdirectories. that is DIR | -- SDir1 | --SDir2a | --SDir2b and so on The CMakeLists.txt file in DIR calls SUBDIRS(SDir1) The CMakeLists.txt file in SDir1 has SUBDIRS( SDir2a SDir2b