[Cmake-commits] CMake branch, master, updated. v3.7.1-910-g65c18b2

2016-12-21 Thread Kitware Robot
_VERSION_MINOR 7) -set(CMake_VERSION_PATCH 20161221) +set(CMake_VERSION_PATCH 20161222) #set(CMake_VERSION_RC 1) --- Summary of changes: Source/CMakeVersion.cmake |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/

[Cmake-commits] CMake branch, next, updated. v3.7.1-1838-g451fea2

2016-12-21 Thread Domen Vrankar
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "CMake". The branch, next has been updated via 451fea216b47ccd5be8e699e1b08536f573e62b4 (commit) via

[Cmake-commits] CMake branch, next, updated. v3.7.1-1836-ge2747bb

2016-12-21 Thread Domen Vrankar
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "CMake". The branch, next has been updated via e2747bb4fca04ea829223496b39036c2b4627e7b (commit) via

Re: [cmake-developers] import another compiler to cmake

2016-12-21 Thread Ben Boeckel
On Wed, Dec 21, 2016 at 13:00:29 +0100, Payam Samimi wrote: > I'm working for a big company in Germany as software developer. They > develope their code and test modules in c++ and using CMake. Additionally > they use their own compiler which is company specific and they would like > import or

Re: [CMake] Cmake

2016-12-21 Thread Dan Liew
Hi Aishwarya, On 21 December 2016 at 11:51, aishwarya selvaraj wrote: > Hi Everyone, > Myself Aishwarya .I wanted to make use of Cmake , but I'm really new to this > and doesn't have a clear idea about it. > > 1) My Goal : > I'm using Praat a speech Processing

Re: [CMake] Cmake

2016-12-21 Thread Stuermer, Michael SP/HZA-ZSEP
Hello, To add your mentioned libraries to the executable you have to link against them. For this the cmake command target_link_libraries() is used: https://cmake.org/cmake/help/v3.7/command/target_link_libraries.html In your case the cmake code should look similar to this:

[cmake-developers] Unknown Imported & Global libraries

2016-12-21 Thread Florent Castelli
Hi, In my project, I have to deal with 3rd party libraries. Either the library is available on the system and then I will try to use that, or I will use sources bundled in my repository. This is in order to make Linux maintainers happy who want to have a system-wide shared library, but to also

[cmake-developers] import another compiler to cmake

2016-12-21 Thread Payam Samimi
Hi everybody, I'm working for a big company in Germany as software developer. They develope their code and test modules in c++ and using CMake. Additionally they use their own compiler which is company specific and they would like import or connect their own compiler to CMake, that Cmake can use

[CMake] Cmake

2016-12-21 Thread aishwarya selvaraj
Hi Everyone, Myself Aishwarya .I wanted to make use of Cmake , but I'm really new to this and doesn't have a clear idea about it. 1) *My Goal :* I'm using Praat a speech Processing Software to create plug - in for my Algorithm on Pitch and Time scaling .(I have the .cpp file) In order to do that

Re: [CMake] cpack multiple packages

2016-12-21 Thread Dvir Yitzchaki
Thanks, but as I understand a component can only belong to one group. How can I get the same component/target on multiple packages? From: Eric Noulard [mailto:eric.noul...@gmail.com] Sent: Wednesday, December 21, 2016 10:42 AM To: Dvir Yitzchaki Cc: cmake@cmake.org

Re: [CMake] cpack multiple packages

2016-12-21 Thread Eric Noulard
When playing with component you have 3 major way to package which are governed by the value of CPACK_COMPONENTS_GROUPING: 1 package per component -> set(CPACK_COMPONENTS_GROUPING IGNORE) 1 package for all -> set(CPACK_COMPONENTS_GROUPING ALL_COMPONENTS_IN_ONE) 1 package per component group the

[CMake] cpack multiple packages

2016-12-21 Thread Dvir Yitzchaki
Hi. I have a big project which produces several zip packages. Some files are common to all packages while others are unique per package. Is there a way to create these packages using cpack? I tried to use components but it seems that either it puts all components in one package or makes one