[CMake] CoreGraphics framework

Martin Guillon MGuillon at movea.com
Tue Feb 2 08:17:54 EST 2010


Thanks a lot now I get it.

-----Original Message-----
From: cmake-bounces at cmake.org [mailto:cmake-bounces at cmake.org] On Behalf Of Michael Wild
Sent: Tuesday, February 02, 2010 1:48 PM
To: Martin Guillon
Cc: cmake at cmake.org
Subject: Re: [CMake] CoreGraphics framework


On 2. Feb, 2010, at 12:05 , Martin Guillon wrote:

> 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 Framework so I 
> don't see how to include it :s
> 
> I tried #include <ApplicationServices/CoreGraphics/CGEvent.h> or 
> #include <CoreGraphics/CGEvent.h>
> 
> But nothing works...
> 
> Any help ?
> 
> THanks

According to http://developer.apple.com/Mac/library/documentation/MacOSX/Conceptual/BPFrameworks/Tasks/IncludingFrameworks.html it is not possible to include header files from sub-frameworks. The only way is to include ApplicationServices/ApplicationServices.h

And your find_library call should not need to specify a path:

find_library(APP_SERVICES ApplicationServices)

The way you call find_library is actually invalid.


HTH

Michael
_______________________________________________
Powered by www.kitware.com

Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


More information about the CMake mailing list