[CMake] [CMAKE] fixup_bundle problem with qt plugins

2010-04-28 Thread Martin Guillon
Hi, I am having problems using fixup_bundle with qt plugins I use that code install(CODE " # glob for previously installed qt plugins to include in fixup_bundle file(GLOB_RECURSE QTPLUGINS \"${${TARGET_NAME}_OUTPUTPLUGINSDIR}/*${CMAKE_SHARED_LIBRARY_SUFFIX}\") include(Bun

Re: [CMake] Qt assistant in OsX application bundle

2010-03-03 Thread Martin Guillon
Ok so we do exactly the same thing (except that I use qt 4.6.2 right now) Thanks for the info -Original Message- From: cmake-boun...@cmake.org [mailto:cmake-boun...@cmake.org] On Behalf Of Clinton Stimpson Sent: Wednesday, March 03, 2010 4:20 PM To: Martin Guillon Cc: Michael Jackson

Re: [CMake] Qt assistant in OsX application bundle

2010-03-03 Thread Martin Guillon
Already tried with that qt.conf and I still get the error :s And yes I have to be careful as it is case sensitive MArtin -Original Message- From: Michael Wild [mailto:them...@gmail.com] Sent: Wednesday, March 03, 2010 4:10 PM To: Clinton Stimpson Cc: Martin Guillon; Michael Jackson

Re: [CMake] Qt assistant in OsX application bundle

2010-03-03 Thread Martin Guillon
hy it works for you :s Thanks Martin -Original Message- From: cmake-boun...@cmake.org [mailto:cmake-boun...@cmake.org] On Behalf Of Clinton Stimpson Sent: Wednesday, March 03, 2010 3:51 PM To: Michael Wild Cc: Michael Jackson; cmake@cmake.org; Martin Guillon Subject: Re: [CMake] Qt assista

Re: [CMake] Qt assistant in OsX application bundle

2010-03-03 Thread Martin Guillon
l.com] Sent: Wednesday, March 03, 2010 3:20 PM To: Martin Guillon Cc: Michael Jackson; cmake@cmake.org Subject: Re: [CMake] Qt assistant in OsX application bundle Hmm, that's strange... Looks like you're doing the things the right way... Have you tried making the Doc/Assistant.app/Conte

Re: [CMake] Qt assistant in OsX application bundle

2010-03-03 Thread Martin Guillon
ting a empty/filled qt.conf in Bundle.app/Doc/Assistant.app/Resources. Nothing works! I really need help Thanks Martin -Original Message- From: cmake-boun...@cmake.org [mailto:cmake-boun...@cmake.org] On Behalf Of Martin Guillon Sent: Monday, March 01, 2010 4:18 PM To: Michael Wild; Micha

Re: [CMake] Qt assistant in OsX application bundle

2010-03-01 Thread Martin Guillon
Thanks a lot Michael, I found the solution in ParaView!!! Martin -Original Message- From: Michael Wild [mailto:them...@gmail.com] Sent: Monday, March 01, 2010 3:14 PM To: Michael Jackson Cc: Martin Guillon; cmake@cmake.org Subject: Re: [CMake] Qt assistant in OsX application bundle But

Re: [CMake] Qt assistant in OsX application bundle

2010-03-01 Thread Martin Guillon
ccessfully integrated the qt assistant in its app bundle? Thanks a lot Martin -Original Message- From: Michael Wild [mailto:them...@gmail.com] Sent: Thursday, February 25, 2010 9:36 AM To: Martin Guillon Cc: Werner Smekal; cmake@cmake.org Subject: Re: [CMake] OsX bundle including Qt framewor

[CMake] [CMAKE] cmake -e copy error

2010-02-25 Thread Martin Guillon
HI, I wanted to report a bug with cmake -E copy. I want to use it, under osx, to copy a font(file without extension). But as a result of the copy I get a 0 bytes executable. I will try to see if it works with file(COPY) but at least I am sure it doesn't work with cmake -E copy. Martin ___

Re: [CMake] OsX bundle including Qt framework

2010-02-25 Thread Martin Guillon
Thanks will try that. Martin -Original Message- From: Michael Wild [mailto:them...@gmail.com] Sent: Thursday, February 25, 2010 9:36 AM To: Martin Guillon Cc: Werner Smekal; cmake@cmake.org Subject: Re: [CMake] OsX bundle including Qt framework I think this is because Qt by default

Re: [CMake] OsX bundle including Qt framework

2010-02-25 Thread Martin Guillon
- From: cmake-boun...@cmake.org [mailto:cmake-boun...@cmake.org] On Behalf Of Martin Guillon Sent: Wednesday, February 24, 2010 4:05 PM To: Werner Smekal; cmake@cmake.org Subject: Re: [CMake] OsX bundle including Qt framework Thanks a lot, it now works perfectly MArtin -Original Message

Re: [CMake] OsX bundle including Qt framework

2010-02-24 Thread Martin Guillon
Thanks a lot, it now works perfectly MArtin -Original Message- From: cmake-boun...@cmake.org [mailto:cmake-boun...@cmake.org] On Behalf Of Werner Smekal Sent: Wednesday, February 24, 2010 3:34 PM To: cmake@cmake.org Subject: Re: [CMake] OsX bundle including Qt framework -BEGIN P

[CMake] OsX bundle including Qt framework

2010-02-24 Thread Martin Guillon
Hi, I use cmake to make an osx bundle of my qt application. During install I copy qt framework from my qt install dir to the Frameworks directory of my bundle. The problem I have now is that when using "ostool -L " I see that my executable look for qt frameworks in a dir which is the absolute pa

Re: [CMake] get_file_name_component - how to return true extension

2010-02-17 Thread Martin Guillon
Just stumbled upon that problem. I have files like *.darwin.cpp And get_filename_component returns .darwin.cpp for the extension which is wrong! The extension is .cpp. Let s take the example of toto.tar.gz. It s a gz file, not tar.gz file. To see why it s wrong we can think of file associat

Re: [CMake] [CMAKE] PROJECT command and CMAKE_SYSTEM_NAME

2010-02-10 Thread Martin Guillon
ginal Message- From: cmake-boun...@cmake.org [mailto:cmake-boun...@cmake.org] On Behalf Of Bill Hoffman Sent: Wednesday, February 10, 2010 5:22 PM To: Tyler Roscoe Cc: cmake@cmake.org; Martin Guillon Subject: Re: [CMake] [CMAKE] PROJECT command and CMAKE_SYSTEM_NAME Tyler Roscoe wrote: > On

[CMake] [CMAKE] PROJECT command and CMAKE_SYSTEM_NAME

2010-02-10 Thread Martin Guillon
Hi, We just found out something really weird about the command PROJECT. Let s say we have a very simple CMakeLists.txt Like that cmake_minimum_required(VERSION 2.6) MESSAGE (STATUS "The system is \"${CMAKE_SYSTEM_NAME}\"") Now as is the CMakelists works fine. The problem appears when we add a

Re: [CMake] CoreGraphics framework

2010-02-02 Thread Martin Guillon
Thanks a lot now I get it. -Original Message- From: cmake-boun...@cmake.org [mailto:cmake-boun...@cmake.org] On Behalf Of Michael Wild Sent: Tuesday, February 02, 2010 1:48 PM To: Martin Guillon Cc: cmake@cmake.org Subject: Re: [CMake] CoreGraphics framework On 2. Feb, 2010, at 12:05

[CMake] CoreGraphics framework

2010-02-02 Thread Martin Guillon
Hi, I am trying to include CGEvent.h in my cmake project. So I need to include CoreGraphics framework. So I added FIND_LIBRARY(APP_SERVICES ApplicationServices "/") FIND_LIBRARY(COREGRAPHICS CoreGraphics "/") in my cmakelists But the CoreGraphics Framework is in the Application Services Framew

[CMake] [CMAKE] OSX + BUNDLE PACKAGE + QT

2009-12-04 Thread Martin Guillon
Hi, I am building a software under osx. We use cmake + qt. I was wondering what was the best solution to build the package? I found a few pages about it: http://www.cmake.org/Wiki/BuildingOSXApplications : this one give an example with sh scripts http://www.cmake.org/Wiki/CMake:CPackPackageGe

[CMake] List of dependencies

2009-10-07 Thread Martin Guillon
HI, If I added dependencies to a target using "add_dependencies", can I get the list of those dependencies afterwards? Thanks ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html

Re: [CMake] Parsing XML from CMAke

2009-09-29 Thread Martin Guillon
ystem in detail.. _ Mike Jackson mike.jack...@bluequartz.net BlueQuartz Softwarewww.bluequartz.net Principal Software Engineer Dayton, Ohio On Sep 29, 2009, at 11:17 AM, Martin Guillon wrote: > T

Re: [CMake] Parsing XML from CMAke

2009-09-29 Thread Martin Guillon
io.net] Envoyé : Tuesday, September 29, 2009 4:58 PM À : Martin Guillon Cc : cmake@cmake.org Objet : Re: [CMake] Parsing XML from CMAke On Tue, Sep 29, 2009 at 11:10:29AM +0200, Martin Guillon wrote: > IN our project we currently use ini file for configuration and so i read them > from CMake.

[CMake] Parsing XML from CMAke

2009-09-29 Thread Martin Guillon
Hi, IN our project we currently use ini file for configuration and so i read them from CMake. I am thinking about using XML because it allows me a lot more things. SO i was wondering if i could parse XML files from CMake ? Thanks ___ Powered by www.kit