Re: [CMake] Somehow making life easier with wxWidgets ...

2008-03-12 Thread Jorgen Bodde
p thinking about making it easier for future releases but I am very happy that it works as expected. With regards, - Jorgen On Tue, Mar 11, 2008 at 4:45 PM, Jorgen Bodde <[EMAIL PROTECTED]> wrote: > Hi Werner, > > sorry I missed your original post. It is worth looking at to see if we

Re: [CMake] Somehow making life easier with wxWidgets ...

2008-03-11 Thread Jorgen Bodde
Hi Werner, sorry I missed your original post. It is worth looking at to see if we can produce some kind of CMake friendly script. I'm however not sure what the best way is to solve this the most user friendly way to only let the user determine which config he would like for his generated project.

Re: [CMake] Somehow making life easier with wxWidgets ...

2008-03-11 Thread Jorgen Bodde
Hi Miquel / Bill / et al > You mean generated at configuration/build time from the bakefile > system? That seems like a good idea. They would have to generate > different files probably, since different configurations co-exist. > > wxWidgets-unicode-release.cmake > wxWidgets-unicode-static.cm

Re: [CMake] Somehow making life easier with wxWidgets ...

2008-03-11 Thread Jorgen Bodde
Hi Miquel, I am not here to critisize your work, on the contrary, your work is probably based on Jerry fath's work, which is based upon my work ;-) I did contribute to CMake too once a long while ago ;-) > Current CVS/HEAD FindwxWidgets and I think the last release CMake > 2.4.8 supports upto w

[CMake] Somehow making life easier with wxWidgets ...

2008-03-11 Thread Jorgen Bodde
Hi All, After a (long) while I wanted to attend to my wxWidgets projects again which I generate from a CMake project. I generated, and found out the libs that were expected were still of the 2.6 version of wxWidgets, while they are at 2.8 already (soon 2.9 even). When it comes to using wxWidgets

[CMake] Updated CMake page in wxWidgets wiki

2007-02-15 Thread Jorgen Bodde
Hi all, I have updated this page http://www.wxwidgets.org/wiki/index.php/CMake To use CMake with wxWidgets. It uses the latest FindwxWidgets.cmake script in CMake, which seems to work nicely. I did only test it on Windows VS.NET 2003 so if someone finds problems on other platforms, please let m

Re: [CMake] Files not in build dir anymore?

2006-12-09 Thread Jorgen Bodde
Thanks Bill, if this is intended, I think at least as help for the arguments you should include this like; [EMAIL PROTECTED] ~]$ ccmake ccmake version 2.4-patch 5 Usage ccmake ccmake --- And add as extra ccmake I would also suggest a comment behind the arguments like; ccmake

Re: [CMake] Files not in build dir anymore?

2006-12-09 Thread Jorgen Bodde
sure you do not have any spurious CMakeCache and/or CMakeFiles dir in your source tree? I personnally do not have any trouble with out-of-source build? What version of CMake do you use? 2006/12/8, Jorgen Bodde <[EMAIL PROTECTED]>: > Hi guys, > > I noticed that my intermediate files ar

[CMake] Files not in build dir anymore?

2006-12-08 Thread Jorgen Bodde
Hi guys, I noticed that my intermediate files are no longer written to the build directory. I do this; ccmake ../../CMakeLists.txt And in the past I was sure the files were kept in the current directory. Now the intermediate files are always written in the source dir. How is the syntax for ccma

Re: [CMake] FindwxWidgets.cmake, suggestion add option to pass to wx-config

2006-11-30 Thread Jorgen Bodde
I ofcourse meant: configure --enable-debug --disable-shared --prefix=/home/jorg/src/wxGTK-ansi-debug-static Sorry about that - Jorgen On 11/30/06, Jorgen Bodde <[EMAIL PROTECTED]> wrote: The wx-config being taken should be the wxWidgets version installed on your system. If you tweak

Re: [CMake] FindwxWidgets.cmake, suggestion add option to pass to wx-config

2006-11-30 Thread Jorgen Bodde
The wx-config being taken should be the wxWidgets version installed on your system. If you tweak it by passing options you are forcing another version which might not work. Your solution can be handy if there are multiple wxWidgets versions on your system, but a better way is: - Compile wxWidget

Re: [CMake] WXDialog using UNICODE wx build again and unicode in CMake?

2006-07-05 Thread Jorgen Bodde
Hi Jan, Thanks! I recently contacted Brad about what the progress will be to make it work. The unicode issue is probably not applied because I did not work on it for quite a while. I had other things to do, and the need for it did not really exist back then. But now that we have a fresh user base

Re: [CMake] Replacing -L with -l

2006-06-09 Thread Jorgen Bodde
Thanks Bill! By the way is it true that Cmake is adopted by the KDE development team? That is good news! - Jorgen William A. Hoffman wrote: At 12:50 PM 6/9/2006, Jorgen Bodde wrote: Hi Philip, Thanks for the info. The problem is that wx-config outputs a whole lot of flags including the

Re: [CMake] Replacing -L with -l

2006-06-09 Thread Jorgen Bodde
, *Jorgen Bodde* <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote: Hi Alex, Thank you for your reply. I want to statically link as much libs as possible (especially wxGTK2.6.3) .. The reason is that my app needs to distributed. When I have wxGTK2.6.1 installed in

Re: [CMake] Replacing -L with -l

2006-06-09 Thread Jorgen Bodde
versions in /usr/lib. To me that sounds rather limiting. Is there any way to circumvent this? I did check the mailing lists but did not find any answer. With regards, - Jorgen Alexander Neundorf wrote: Von: Jorgen Bodde <[EMAIL PROTECTED]> Hi all, Is there any feature in CMake

[CMake] Replacing -L with -l

2006-06-09 Thread Jorgen Bodde
Hi all, Is there any feature in CMake (Linux / Suse 10) that replaces e.g. /home/jorg/src/scintilla/lib/libscintilla.a in TARGET_LINK_LIBRARIES with -L/home/jorg/src/scintilla/lib/ and -lscintilla ? If so how can I disable this? The reason is that if the latter notation is used, and a scri

[CMake] Suggestion for CMake script

2006-03-28 Thread Jorgen Bodde (email lists)
Hi all, To make the Cmake script more consistent, I would suggest a minor change (that can coexist next to the original one). If you define a project like this PROJECT(SOMENAME) then the SOMENAME_SOURCE_DIR and SOMENAME_BINARY_DIR come into play. I find it hard to distinguish those 'auto ge

[CMake] VS.NEt generator flag missing

2006-01-30 Thread Jorgen Bodde
Hi all, Since a while I am missing this flag from the VS.NET generator: /EHsc Every app I compile crashes unless i add it, I nevber had problems with my apps with older versions of CMakeSetup (using 2.2 patch 2). Is this flag removed for a reason? Or is this already fixed in newer versions?