[CMake] PackageMaker Generator and Developer Identification.

2015-09-10 Thread dayan.s via CMake
I am using PackageMaker Generator to create .dmg and .pkg of a MAC application that we intend distribute outside of the App Store - So far so good. I am looking into the next step of signing this application, so as to ensure that the GateKeeper does not flag it as quarantined. Questions: 1) Does t

Re: [CMake] PackageMaker generator

2009-11-23 Thread David Cole
SET(CPACK_POSTFLIGHT_SCRIPT "/installed/script/here.sh") should do what you want... "grep -rn POSTFLIGHT_SCRIPT *" in the CMake source tree for more info/example use... HTH, David On Sat, Nov 21, 2009 at 7:37 AM, Gustavo Gutierrez < gustavo.ggutier...@gmail.com> wrote: > Hello, > > Is it pos

[CMake] PackageMaker generator

2009-11-21 Thread Gustavo Gutierrez
Hello, Is it possible to create a mac os x package (with the PackageMaker generator) that runs a post install script?. I am looking for the same functionality you get in debian when using: set(CPACK_DEBIAN_PACKAGE_CONTROL_EXTRA "${CMAKE_BINARY_DIR}/postinst") Thanks in advance for any suggeston