Re: [CMake] CPack and PackageMaker

2016-02-02 Thread Roman Wüger
@Brad, @Clinton: Could we add this feature into CMake 3.5.0, because on newer Mac OS systems the package maker is already deprecated and for those we could use the productbuild instead. Thanks in advance Best Regards Roman > Am 22.12.2015 um 07:56 schrieb Roman Wüger : > > Is there anything

[CMake] [ANNOUNCE] CMake 3.5.0-rc1 now ready for testing!

2016-02-02 Thread Robert Maynard
I am proud to announce the first CMake 3.5 release candidate. Sources and binaries are available at: https://cmake.org/download/ Documentation is available at: https://cmake.org/cmake/help/v3.5 Release notes appear below and are also published at https://cmake.org/cmake/help/v3.5/release/3

Re: [CMake] CPack RPM generator not using CPACK_RPM__XXX variables

2016-02-02 Thread Domen Vrankar
> set(CPACK_GENERATOR "RPM") > set(CPACK_RPM_BLAH1_USER_BINARY_SPECFILE > "${CMAKE_CURRENT_SOURCE_DIR}/install/SPECS/blah1.spec.in") > set(CPACK_RPM_BLAH1_PACKAGE_PREFIX "${CMAKE_INSTALL_PREFIX}/blah1") > set(CPACK_RPM_BLAH2_PACKAGE_PREFIX "${CMAKE_INSTALL_PREFIX}/blah2") > set(CPACK_RPM_COMPONENT_

[CMake] CPack RPM generator not using CPACK_RPM__XXX variables

2016-02-02 Thread Andrew Helten
I have the CPack RPM component packager partly working in that it creates separate RPMs for my two components (soon to be more, but two for now). However, the RPMs are not quite right because the packager completely ignores all of my CPACK_RPM__XXX variables, such as, CPACK_RPM__PACKAGE_PREFIX. The

Re: [CMake] linking boost libraries built inside the project on mac os

2016-02-02 Thread Slava
I found the relevant discussion on stackoverflow http://stackoverflow.com/questions/33665781/dependencies-on-boost-library-dont-have-full-path . You can mark my question is [solved]. Thank you. On Tue, Feb 2, 2016 at 3:48 PM, Gonzalo wrote: > > > El 02/02/16 a las 09:01, Slava escribió: > >> I f

Re: [CMake] linking boost libraries built inside the project on mac os

2016-02-02 Thread Gonzalo
El 02/02/16 a las 09:01, Slava escribió: I failed to reproduce it with a toy project, so please bear with me... I compile and install boost at config time (by generating the helper cmake file with external project and running cmake on it). It is found by standard findBoost afterwards and linke

[CMake] linking boost libraries built inside the project on mac os

2016-02-02 Thread Slava
I failed to reproduce it with a toy project, so please bear with me... I compile and install boost at config time (by generating the helper cmake file with external project and running cmake on it). It is found by standard findBoost afterwards and linked against Boost_UNIT_TEST_FRAMEWORK_LIBRARY. A