Re: [cmake-developers] OSX - Application bundle and private frameworks?

2015-08-27 Thread Brad King
On 08/25/2015 10:29 AM, Raffi Enficiaud wrote: > Thank you for the feedback (and sorry for the late reply). However I > could not find any example of this fixup_bundle, and I find that quite > complicated just to copy a directory to the bundle itself. See the bottom of Source/QtDialog/CMakeLists

Re: [cmake-developers] OSX - Application bundle and private frameworks?

2015-08-25 Thread Raffi Enficiaud
Le 15/07/15 15:10, Brad King a écrit : On 07/13/2015 06:43 PM, Raffi Enficiaud wrote: [...] The MACOSX_PACKAGE_LOCATION source file property was created for marking individual source files. The possibility of marking a (framework) directory with the property was never considered AFAIK. For X

Re: [cmake-developers] OSX - Application bundle and private frameworks?

2015-07-15 Thread Brad King
On 07/13/2015 06:43 PM, Raffi Enficiaud wrote: > - and I specify the location of those frameworks within the application > bundle: > > set_source_files_properties(${fcCamFramework} PROPERTIES > MACOSX_PACKAGE_LOCATION Frameworks) > set_source_files_properties(${sbigudFramework} PROPERTIES > MA

[cmake-developers] OSX - Application bundle and private frameworks?

2015-07-13 Thread Raffi Enficiaud
Hi, I am trying to copy a private framework into an application bundle: - I can find the frameworks properly with the "find_library", - I put those frameworks in the add_executable command add_executable( MACOSX_BUNDLE ### source files ... ### frameworks ${sbigudFramew