Re: [CMake] CPack not detecting pkgbuild or product build

2017-05-04 Thread Ayla Khan
OK, good to know. Best, Ayla > On May 4, 2017, at 6:09 AM, Robert Maynard wrote: > > Hi, > > By default the NSIS generator is enabled. > > On Wed, May 3, 2017 at 6:39 PM, Ayla Khan > wrote: > That worked - thank

Re: [CMake] CPack not detecting pkgbuild or product build

2017-05-04 Thread Robert Maynard
Hi, By default the NSIS generator is enabled. On Wed, May 3, 2017 at 6:39 PM, Ayla Khan wrote: > That worked - thank you! Do I need to add NSIS manually for Windows > installers as well? It looks like CMake finds NSIS without any difficulty > but I’d rather be sure. > >

Re: [CMake] CPack not detecting pkgbuild or product build

2017-05-03 Thread Ayla Khan
That worked - thank you! Do I need to add NSIS manually for Windows installers as well? It looks like CMake finds NSIS without any difficulty but I’d rather be sure. Thanks, Ayla > On May 3, 2017, at 2:56 PM, Robert Maynard wrote: > > You will need to append the

Re: [CMake] CPack not detecting pkgbuild or product build

2017-05-03 Thread Robert Maynard
You will need to append the productbuild type to you CPACK_GENERATOR so it would look like SET(CPACK_GENERATOR "productbuild;STGZ;TGZ") On Wed, May 3, 2017 at 4:14 PM, Ayla Khan wrote: > Thank you Robert. The CPACK_GENERATOR variable is currently set to > “STGZ;TGZ”. When I

Re: [CMake] CPack not detecting pkgbuild or product build

2017-05-03 Thread Ayla Khan
Thank you Robert. The CPACK_GENERATOR variable is currently set to “STGZ;TGZ”. When I installed Xcode, I made sure using xcode-select that the usual command line tools were installed. I can find productbuild in my PATH, but CPACK_BINARY_PRODUCTBUILD is off in CPackConfig.cmake. Do I need to

Re: [CMake] CPack not detecting pkgbuild or product build

2017-05-03 Thread Robert Maynard
Hi Ayla, The packages that are built when executing "make package" is determined by the variable "CPACK_GENERATOR" inside your CPackConfig.cmake ( generally located in the root of your build directory as it is configured ). On Fri, Apr 7, 2017 at 3:44 PM, Ayla Khan wrote: >