Re: [cmake-developers] patch for module GetPrerequisites

2016-03-08 Thread Brad King
On 03/07/2016 05:41 PM, Benjamin Ballet wrote: > We have to call : > fixup_bundle("${CMAKE_INSTALL_PREFIX}/../test"... > to fix an optional test folder installed near the app. Thanks. I've made a slightly different fix that should resolve that: GetPrerequisites: Fix gp_resolved_file_type on

Re: [cmake-developers] patch for module GetPrerequisites

2016-03-07 Thread Benjamin Ballet
We have to call : fixup_bundle("${CMAKE_INSTALL_PREFIX}/../test"... to fix an optional test folder installed near the app. verify_app will later compare a path like C:/program/app/../test to C:/program/test and state they are inequal while they point to the same file. That's why I have to call

Re: [cmake-developers] patch for module GetPrerequisites

2016-03-07 Thread Brad King
On 03/04/2016 12:17 PM, Benjamin Ballet wrote: > The fail occurs during verify_app in the function gp_resolved_file_type > from module GetPrerequisites. This function test if two paths are equal > without translating them to there canonical form before. [snip] >

[cmake-developers] patch for module GetPrerequisites

2016-03-04 Thread Benjamin Ballet
Hello We are using fixup_bundle on Windows and I discovered that this function doesn't work if the path of the app is not in it's canonical form. Of course I can canonicalize the path of the app but I would like to fix this issue for everyone. The fail occurs during verify_app in the function