Re: [CMake] OSX Leopard- compiling for Tiger and later

2008-07-02 Thread Eric Torstenson
sean's post was requesting. However, I'm not sure if I'll need that once I get all the way to linking or not. eric -- Mike Jackson Senior Research Engineer Innovative Management Technology Services On Jul 2, 2008, at 1:47 PM, Sean McBride wrote: On 7/2/08 12:37 PM, Eric

[CMake] linking static libraries

2008-05-30 Thread Eric Torstenson
Hi All, I'm running an application that uses a handful of semi-standard libraries (freetype, libpng, zlib). Before I switched over to cmake, I was linking to the static version of those libraries, and my app seemed to run fine on machines as long as it was a recent version of linux.

[CMake] wxWidgets, cmake and parallels msys is confused

2008-05-09 Thread Eric Torstenson
Hi all, This is pretty weird, and most certainly due to the complex arrangement of the system I'm compiling things on. First, I'm building the application using parallels running msys. The machine it's ultimately running on is a macbook pro, which has wxWidgets installed on as well. When

Re: [CMake] wxWidgets, cmake and parallels msys is confused

2008-05-09 Thread Eric Torstenson
one is just too big to run on my laptop under parallels). After thinking about it a bit, I'm using some prebuilt stuff and some that I compiled with MSYS and MingW. I am pretty sure that this sort of mishmash is a recipe for disaster, without the WIN32 being defined. HTH, Werner Eric

Re: [CMake] Control Object code destination?

2008-04-25 Thread Eric Torstenson
, where you allow the user to specify where the script is run (such as cd build-dbg; ../configure) I tried doing this, but it didn't have any effect on the make scripts and object code paths. thanks! eric Eric Torstenson wrote: Hi All, I'm compiling my application on 4 platforms (linux 32 bit

[CMake] Control Object code destination?

2008-04-23 Thread Eric Torstenson
Hi All, I'm compiling my application on 4 platforms (linux 32 bit, linux 64 bit, windows and mac) I would like to use my linux source tree for all of them without having to recompile the whole thing each time I change from one platform to the next. Is there a way to do that? I looked at

Re: [CMake] CMake 2.4 (8) WxWidgets + RichText Pt 2

2008-04-21 Thread Eric Torstenson
That did the trick (editing the FindwxWidgets.cmake) Thanks so much! eric Alan W. Irwin wrote: To see what is going on, check the FindwxWidgets.cmake file. For example, on my Debian testing system with CMake 2.4.8, that file is located at /usr/share/cmake-2.4/Modules/FindwxWidgets.cmake.

Re: [CMake] CMake 2.4 (8) WxWidgets + RichText Pt 2

2008-04-21 Thread Eric Torstenson
Hi Miguel, Well, with this in mind, I did a bit of playing, and decided that the problem wasn't so much that FindwxWidgets.cmake needed to be changed, but instead, I was calling it incorrectly. What I had to do was as follows: SET (wxWidgets_USE_LIBS aui richtext adv html core xml base xrc

[CMake] CMake 2.4 (8) and WxWidgets + RichText

2008-04-18 Thread Eric Torstenson
Hi All, I've been struggling to get my gui application to compile and link using CMake (the command line version went easily enough) and I think it's time to ask for some help. I'm using version 2.8.6 of wx-widgets, and my old makefiles compiled and linked the application just fine.

[CMake] CMake 2.4 (8) WxWidgets + RichText Pt 2

2008-04-18 Thread Eric Torstenson
I managed to find the ultimate cause of manual assignment using wx-config and CMAKE_CXX_FLAGS. This is what I was trying to do originally, but never had a successful link. This is directly calling wx-config myself, and then attempting to pass the results to the linker call. When I add them