Re: [cmake-developers] Rename suffix of Mac OS Framework

2015-10-07 Thread Roman Wüger
Hi Brad, A use case for example is when an InDesign plugin should be developed. The InDesign plugin on Mac OS is a framework with the file extension ".InDesignPlugin". It works if the "Xcode" generator is used and the target property "XCODE_ATTRIBUTE_WRAPPER_EXTENSION" is set to

Re: [cmake-developers] Rename suffix of Mac OS Framework

2015-10-05 Thread Brad King
On 10/01/2015 04:07 AM, Roman Wüger wrote: > set_target_properties(${PROJECT_NAME} PROPERTIES FRAMEWORK TRUE) > > Is there a way to rename the suffix ".framework"? Not currently. It is hard-coded here:

[cmake-developers] Rename suffix of Mac OS Framework

2015-10-01 Thread Roman Wüger
Hello, at the moment I build my frameworks with the following property: set_target_properties(${PROJECT_NAME} PROPERTIES FRAMEWORK TRUE) If my project is called "Test" for example, then a folder structure with the name "Test.framework" is created. Is there a way to rename the suffix