Re: [CMake] make arguments

2008-07-23 Thread Tim Schooley
Hi, Milan Dorak wrote: > I can't find in documentation or anywhere else, how can i pass argument > to make command. > I need 'make -j 3'. don't care if it's in CMakeLists.txt or CTest script. _You_ invoke make, not any of the CMake scripts. E.g. mkdir build cd build cmake /path/to/source make C

Re: [CMake] Building Mac kext from CMake

2008-07-10 Thread Tim Schooley
Hi Alan, Alan W. Irwin wrote: > On 2008-07-09 12:28-0400 Sean McBride wrote: > >> On 7/9/08 5:06 PM, Tim Schooley said: >> >>> I have a kernel extension that I would like to build from CMake >>> in order to include it in CPack. >> >> You a

Re: [CMake] Building Mac kext from CMake

2008-07-10 Thread Tim Schooley
Hi Sean, Sean McBride wrote: > On 7/9/08 5:06 PM, Tim Schooley said: > >> I have a kernel extension that I would like to build from CMake >> in order to include it in CPack. > > You are very likely the first to try that, and I'd be surprised if it > went smoothly

[CMake] Building Mac kext from CMake

2008-07-09 Thread Tim Schooley
Hi folks! Has anyone managed to take an XCode project (yuk) and build it from CMake? I have a kernel extension that I would like to build from CMake in order to include it in CPack. I guess I could just add a custom target, but I was hoping someone may have a better suggestion. Thanks for any he

Re: [CMake] QT3 and embedding images

2007-08-24 Thread Tim Schooley
rote: > On Friday 24 August 2007 07:41, Tim Schooley wrote: >> Hi folks, >> >> I've recently ported my project to CMake from standard Makefiles, but >> missed a vital point (only just noticed by running the damn thing!). >> >> I've looked around, but can

[CMake] QT3 and embedding images

2007-08-24 Thread Tim Schooley
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi folks, I've recently ported my project to CMake from standard Makefiles, but missed a vital point (only just noticed by running the damn thing!). I've looked around, but can't find the answer: How to I embed images into QT3 apps with CMake ? The M

[CMake] symbolic linking at install

2007-08-22 Thread Tim Schooley
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi folks, I know there are already a few posts on this subject - I've tried to take what has been said to achieve my goal: for the install target, I would like to link my libraries as follows (clearly, this is for unix only): libabc.so -> libabc.so.1

Re: [CMake] linux kernel module, output directory and clean issues

2007-08-17 Thread Tim Schooley
et ( ${DRIVER_TARGET_NAME} ALL DEPENDS ${DRIVER_BIN_FILE} ) - Thanks again for all your help! Kind regards, Tim Alan W. Irwin wrote: > On 2007-08-16 15:18+0100 Tim Schooley wrote: > >> -BEGIN PGP SIGNED MESSAGE- >> Hash: SHA1 >> >>

[CMake] linux kernel module, output directory and clean issues

2007-08-16 Thread Tim Schooley
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi all! [My first post, please bear with me...] I've been porting a Makefile project to use CMake. Thankfully, it's gone very smoothly, and now I'm just trying to iron out some ripples. CMake truly rocks. I found some advice on this mailing list for