[CMake] requiring parallel building but sequential linking

2019-02-17 Thread Domen Vrankar
Hi, I'm building llvm project with CMake. While build process is compiling the code I prefer running "make -j3" on my 4 core pc (bumping processor to 100% on 3 of 4 cores and using up ~5 GB of ram - part of it is system and not build related). While build process is linking I must run "make" with

Re: [CMake] Beginning to compiling CMake file

2018-07-31 Thread Domen Vrankar
On Wed, Aug 1, 2018, 03:46 CrestChristopher wrote: > Hi, I'm using CMake for Windows as I was informed that I couldn't use > `make` as the CMakeLists.txt file was only for CMake. > CMake is a meta build system which means that on for example Linux it henerates make fliles so CMakeLists.txt

Re: [CMake] CPack multiple packages

2018-07-19 Thread Domen Vrankar
2018-07-19 18:00 GMT+02:00 dbegun via CMake : > I have a project where a lib and a binary requiring the lib are built in > separate subdirs of the project root. Each dir contains its own > CMakeLists.txt with build/install targets, and there is also a top level > one, which mainly just adds

Re: [CMake] CPack per-component value for CPACK_PACKAGING_INSTALL_PREFIX when using RPM generator

2018-01-04 Thread Domen Vrankar
2018-01-04 22:42 GMT+01:00 Sam Lunt : > Hi Domen, > > Thanks for the reply, but that doesn't seem to work for me. I modified > my example to add this function call: > > list(APPEND CPACK_RPM_RELOCATION_PATHS > ${CPACK_PACKAGING_INSTALL_PREFIX} > ) > The

Re: [CMake] CPack per-component value for CPACK_PACKAGING_INSTALL_PREFIX when using RPM generator

2018-01-04 Thread Domen Vrankar
2018-01-03 22:40 GMT+01:00 Sam Lunt : > I am trying to set a per-component value for > CPACK_PACKAGING_INSTALL_PREFIX when using the RPM generator, but I > haven't been able to do so. > > I would like to be able to: > 1. Install using "make install" (or cmake

Re: [cmake-developers] Problem with created debian package

2018-01-02 Thread Domen Vrankar
2017-12-30 6:29 GMT+01:00 Kornel Benko : > > 2) use gnu tar instead by setting CPACK_DEBIAN_ARCHIVE_TYPE to gnutar > > Thanks, this is really nice. Meanwhile I found out what was going wrong. > The package manager seems to not understand the way some filenames > containing >

Re: [cmake-developers] Problem with created debian package

2017-12-29 Thread Domen Vrankar
2017-12-29 14:20 GMT+01:00 Kornel Benko : > All of sudden, cmake(cpack) started producing wrong debian packages for > one project. > Did the project change in some way or was it the packaging environment that changed? I'd like to know a bit more details even if the solution below

Re: [cmake-developers] CMP0022 documentation is outdated

2017-12-23 Thread Domen Vrankar
2017-12-23 13:25 GMT+01:00 Alan W. Irwin : > On 2017-12-19 14:18-0800 Alan W. Irwin wrote: > > I have a software project with a dated CMake-based build system that >> specifically set CMP0022 to OLD. So while updating that build system >> I naturally consulted the

Re: [CMake] Installing and exporting multiple configurations of the same library

2017-12-16 Thread Domen Vrankar
2017-12-16 0:18 GMT+01:00 Saad Khattak : > Hi, > > I have 4 configurations (2 for Debug and 2 for Release) and I would like > to install the libraries such that they are installed in the correct > directories. > > Installing without worrying about configurations looks like

Re: [CMake] CPack: Create debian packge for each sub-project

2017-12-04 Thread Domen Vrankar
2017-12-04 20:35 GMT+01:00 DKLind <davidkl...@gmail.com>: > Domen Vrankar wrote > > I'm a bit confused. Is there something missing in the patch? > > Attached patch only adds per component version override - it doesn't even > > touch the multiple calls to `include(CPac

Re: [CMake] INTERFACE libraries and -config.cmake files

2017-12-04 Thread Domen Vrankar
2017-12-04 23:17 GMT+01:00 Saad Khattak : > Hi, > > I have an interface library and I am not sure how I would get CMake to > generate the usual -config.cmake file for the library so that I can > then use "find_package" on the interface library from an external project. > > I

Re: [CMake] CPack: Create debian packge for each sub-project

2017-12-04 Thread Domen Vrankar
2017-12-04 19:57 GMT+01:00 DKLind <davidkl...@gmail.com>: > Domen Vrankar wrote > > product_1-component_1-1.0.0 > > product_1-component_2-1.0.0 > > product_2-component_1-3.5.7 > > product_2-component_2-3.5.7 > > This too is what my patch fixes. Attached i

Re: [CMake] CPack: Create debian packge for each sub-project

2017-12-01 Thread Domen Vrankar
2017-12-01 18:04 GMT+01:00 Domen Vrankar <domen.vran...@gmail.com>: > 2017-12-01 16:47 GMT+01:00 DKLind <davidkl...@gmail.com>: > >> This is precisely my situation. I have a large project where 50+ packages >> are >> generated. I wanted, needed, to b

Re: [CMake] CPack: Create debian packge for each sub-project

2017-12-01 Thread Domen Vrankar
2017-12-01 16:47 GMT+01:00 DKLind : > This is precisely my situation. I have a large project where 50+ packages > are > generated. I wanted, needed, to be able to set each packages' version > uniquely. Using the CPACK_DEBAIN__PACKAGE_VERSION variable > seemed > to be the

Re: [CMake] CPack: Create debian packge for each sub-project

2017-12-01 Thread Domen Vrankar
2017-12-01 5:41 GMT+01:00 Craig Scott <craig.sc...@crascit.com>: > > > On Fri, Dec 1, 2017 at 11:15 AM, Domen Vrankar <domen.vran...@gmail.com> > wrote: > >> 2017-11-29 17:07 GMT+01:00 DKLind <davidkl...@gmail.com>: >> >&g

Re: [CMake] CPack: Create debian packge for each sub-project

2017-11-30 Thread Domen Vrankar
2017-11-29 17:07 GMT+01:00 DKLind : > I have finally found time to work on a patch so > CPACK_DEBAIN__PACKAGE_VERSION is recognized. I am amazed how > simple the fix actually is. > > I plan on submitting a formal patch soon for Debian and RPM. I don't know > anything about

Re: [CMake] CPack: Create debian packge for each sub-project

2017-07-23 Thread Domen Vrankar
2017-07-23 17:19 GMT+02:00 DKLind : > Also, curious why CPACK_*COMPONENT*__DESCRIPTION is different > from the other CPACK_*DEBIAN*__PACKAGE_XXX? > Most variables are debian package specific/allow to override general CPack variables specifically for debian packages. For

Re: [CMake] CPack: Create debian packge for each sub-project

2017-07-21 Thread Domen Vrankar
2017-07-22 1:55 GMT+02:00 DKLind : > I have a large project and I need to create a Debian package for each > sub-project (essentially each add_subdirectory). > > I have been experimenting with CPack components as outlined here: >

Re: [CMake] CPack and user .spec file

2017-06-20 Thread Domen Vrankar
> > I have an application repository that is built with CMake, but > requires additional/custom handling when packaging -- hence the need > for a custom .spec file. Can this not be done from CMakeLists.txt by setting some additional CPACK_* variables depending on the build environment? > After

Re: [CMake] RPM package and relocation

2017-05-10 Thread Domen Vrankar
> > > set(INSTALL_DIR ${CMAKE_INSTALL_PREFIX}/ssp-suite) > > install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/ssp/" DESTINATION > ${INSTALL_DIR}) > Eric already covered this part - use relative paths instead ( no / at the beginning). > But I also need to execute a post script, which runs after

Re: [CMake] CPack - Transaction error

2017-05-09 Thread Domen Vrankar
> > Transaction check error: > file /opt from install of ssp-suite-7.1-1.x86_64 conflicts with file > from package filesystem-3.2-21.el7.x86_64 > > Error Summary > Directory /opt is already owned by filesystem package but is not listed in CPACK_RPM_EXCLUDE_FROM_AUTO_FILELIST variable. Add /opt

Re: [cmake-developers] [DISCUSSION] CMake Localization (L10N)

2017-04-19 Thread Domen Vrankar
2017-04-18 19:16 GMT+02:00 Konstantin Podsvirov : > Draft code: > > > set(GREETING "greeting message" # Optional default value > > en "Hello, world!" > > ru "Привет, мир!") > > > > set(CMAKE_OUTPUT_LOCALE "en") # Or CMAKE_L10N_LOCALE... > > > >

Re: [CMake] Packaging issues

2017-04-03 Thread Domen Vrankar
2017-04-03 12:30 GMT+02:00 Volker Enderlein < volker.enderl...@ifm-chemnitz.de>: > But when I checked the CPack*Config.cmake files none of the entries above > are referenced. After running the `cmake -G "Visual Studio 14 2015 Win64" > ..\TestProject` a second time everything is fine; the entries

Re: [CMake] How to exclude some files from building?

2017-03-31 Thread Domen Vrankar
2017-03-31 4:41 GMT+02:00 kipade : > There are some files I do not want to build if the specified condition was > ture. > For example, for testing, I want build a new file witch include a main > entry just > for testing; if not, a new file would be compile for normal task. > I do

Re: [CMake] CPACK, generating deb packages: md5sums and wrong directory permissons

2017-03-08 Thread Domen Vrankar
2017-03-08 16:23 GMT+01:00 Bernhard Seckinger : > Hi Domen, > > > This came up in the past and if I recall correctly the only workaround > was > > the install(DIRECTORY ... DIRECTORY_PERMISSIONS) that you mentioned. > Please > > file a bug report for this one. > > Where

Re: [CMake] CPACK, generating deb packages: md5sums and wrong directory permissons

2017-03-08 Thread Domen Vrankar
2017-03-08 10:00 GMT+01:00 Bernhard Seckinger : > Hi all, > > I'm using cpack to generate a debian package. There are two things that > look > like bugs in cpack to me (although it might also be, that I got something > wrong): > > a) Files, that I install with

Re: [CMake] Disabling INSTALL target for subdirectory

2017-02-16 Thread Domen Vrankar
2017-02-16 7:59 GMT+01:00 Milan Ziegler : > Hi, > > we are using the CMake install mechanism "install(...)" to copy all > relevant files and target binaries of the product into the CMake install > prefix folder, for further packaging. So far so good. > > We are also using

Re: [CMake] Using CMAKE_INSTALL_PREFIX in custom install command fails with CPack

2017-02-09 Thread Domen Vrankar
2017-02-09 12:08 GMT+01:00 Martin Craig : > Hi, got this problem which I've boiled down to a simple test case. My > source dir contains just one file (realfile) and the installation should > install this in bin and make a symlink from linkfile to it. This is the >

[Cmake-commits] CMake branch, next, updated. v3.7.2-2285-g69cd1ce

2017-01-22 Thread Domen Vrankar
ns in full, below. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=69cd1ce190268342cc570569afbba1fc6038822e commit 69cd1ce190268342cc570569afbba1fc6038822e Merge: f6bdf63 624709c Author: Domen Vrankar <domen.vran

[Cmake-commits] CMake branch, next, updated. v3.7.2-2278-g639429c

2017-01-21 Thread Domen Vrankar
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=639429cb85ed679c38223c7be1c4a0dfd3b3de39 commit 639429cb85ed679c38223c7be1c4a0dfd3b3de39 Merge: bb234a4 82eb170 Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Sat Jan 21 03:36:09 2017 -0500 Commit:

[Cmake-commits] CMake branch, next, updated. v3.7.2-2270-gb278af8

2017-01-20 Thread Domen Vrankar
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=b278af8e08066537fa4eab38b3001e1c0df9f8d8 commit b278af8e08066537fa4eab38b3001e1c0df9f8d8 Merge: 33fbedf 21de0cc Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Fri Jan 20 14:45:09 2017 -0500 Commit:

[Cmake-commits] CMake branch, next, updated. v3.7.2-2233-ge9ae0ad

2017-01-19 Thread Domen Vrankar
ns in full, below. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=e9ae0adbfc45c716d5bafdd9fb8d5d41f8a52983 commit e9ae0adbfc45c716d5bafdd9fb8d5d41f8a52983 Merge: cba760d a802ddd Author: Domen Vrankar <domen.vran

Re: [CMake] Managing a local installation of cmake-built open source packages

2017-01-18 Thread Domen Vrankar
2017-01-18 22:37 GMT+01:00 ardi : > If anybody has further suggestions, please don't hesitate to tell. > Alternative 1: I usually go with the platform supported packages even if that means having more than one package format... I prefer less custom dependencies to

[Cmake-commits] CMake branch, next, updated. v3.7.1-1966-g63a8770

2017-01-10 Thread Domen Vrankar
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=63a8770f08d0bcb239ceaaa18f5a6ee99af38be2 commit 63a8770f08d0bcb239ceaaa18f5a6ee99af38be2 Merge: da90f24 af77368 Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Tue Jan 10 12:48:49 2017 -0500 Commit:

[Cmake-commits] CMake branch, next, updated. v3.7.1-1928-gf14f487

2017-01-09 Thread Domen Vrankar
ns in full, below. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=f14f4875429bcc4445ec06328f42d3243bd36892 commit f14f4875429bcc4445ec06328f42d3243bd36892 Merge: 8dc707a adbf722 Author: Domen Vrankar <domen.vran

[Cmake-commits] CMake branch, next, updated. v3.7.1-1925-g8dc707a

2017-01-09 Thread Domen Vrankar
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=8dc707a2ffd830f95271275808b645a372e7cebd commit 8dc707a2ffd830f95271275808b645a372e7cebd Merge: 1f2f6e0 574c81e Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Tue Jan 10 02:38:12 2017 -0500 Commit:

[Cmake-commits] CMake branch, next, updated. v3.7.1-1923-g1f2f6e0

2017-01-09 Thread Domen Vrankar
e: 18e54de 23435da Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Tue Jan 10 02:31:41 2017 -0500 Commit: CMake Topic Stage <kwro...@kitware.com> CommitDate: Tue Jan 10 02:31:41 2017 -0500 Merge topic 'cpack-rpm-user-bin-spec-file-fix' into next 23435daa

[Cmake-commits] CMake branch, next, updated. v3.7.1-1919-g18e54de

2017-01-09 Thread Domen Vrankar
e: 2d08b22 699ce81 Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Tue Jan 10 02:25:10 2017 -0500 Commit: CMake Topic Stage <kwro...@kitware.com> CommitDate: Tue Jan 10 02:25:10 2017 -0500 Merge topic 'cpack-rpm-user-bin-spec-file-fix' into next 699ce812 C

[Cmake-commits] CMake branch, next, updated. v3.7.1-1853-g1890504

2016-12-25 Thread Domen Vrankar
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=1890504c1220777f247462f00d9889a6d242e4bd commit 1890504c1220777f247462f00d9889a6d242e4bd Merge: 6d47003 36bc7e4 Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Sun Dec 25 04:55:00 2016 -0500 Commit:

[Cmake-commits] CMake branch, next, updated. v3.7.1-1851-g6d47003

2016-12-23 Thread Domen Vrankar
ns in full, below. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=6d47003d339c0be17efe467fe06bc97294479e73 commit 6d47003d339c0be17efe467fe06bc97294479e73 Merge: 6bfcb00 4227f29 Author: Domen Vrankar <domen.vran

[Cmake-commits] CMake branch, next, updated. v3.7.1-1848-g6bfcb00

2016-12-23 Thread Domen Vrankar
g/gitweb?p=cmake.git;a=commitdiff;h=6bfcb004e409915032522b831124b758b1ba5403 commit 6bfcb004e409915032522b831124b758b1ba5403 Merge: 01100b9 05c14ea Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Fri Dec 23 15:12:18 2016 -0500 Commit: CMake Topic Stage <kwro...@kitware.com>

[Cmake-commits] CMake branch, next, updated. v3.7.1-1842-g01100b9

2016-12-23 Thread Domen Vrankar
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=01100b9e899c0a8392f3f1c2d29bcde93a29132f commit 01100b9e899c0a8392f3f1c2d29bcde93a29132f Merge: 37debbd 6daa2d3 Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Fri Dec 23 15:11:40 2016 -0500 Commit:

[Cmake-commits] CMake branch, next, updated. v3.7.1-1840-g37debbd

2016-12-23 Thread Domen Vrankar
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=37debbdfda006617a0e83f171d617bb3bfdf44f2 commit 37debbdfda006617a0e83f171d617bb3bfdf44f2 Merge: 451fea2 803e173 Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Fri Dec 23 15:10:22 2016 -0500 Commit:

Re: [CMake] cpack multiple packages

2016-12-22 Thread Domen Vrankar
2016-12-21 12:29 GMT+01:00 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? > Usually you wouldn't want to package same file on same location with same filename

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

2016-12-21 Thread Domen Vrankar
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=451fea216b47ccd5be8e699e1b08536f573e62b4 commit 451fea216b47ccd5be8e699e1b08536f573e62b4 Merge: e2747bb fb4a45e Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Wed Dec 21 12:20:31 2016 -0500 Commit:

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

2016-12-21 Thread Domen Vrankar
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=e2747bb4fca04ea829223496b39036c2b4627e7b commit e2747bb4fca04ea829223496b39036c2b4627e7b Merge: a1d713f 04f8752 Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Wed Dec 21 12:19:23 2016 -0500 Commit:

Re: [CMake] Documentation in RPM Package

2016-12-20 Thread Domen Vrankar
2016-12-20 21:53 GMT+01:00 Paul Londino : > Hello, > > I am trying to create an RPM package using CPack. I am having trouble > packaging the documentation. There is a custom target that generates > HTML using DoxyGen (in a folder called html), and this gets installed > to

[Cmake-commits] CMake branch, next, updated. v3.7.1-1834-ga1d713f

2016-12-20 Thread Domen Vrankar
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=a1d713f219bab2475c540af474d80c4949234da0 commit a1d713f219bab2475c540af474d80c4949234da0 Merge: b195005 b8e990f Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Tue Dec 20 17:17:14 2016 -0500 Commit:

[Cmake-commits] CMake branch, next, updated. v3.7.1-1832-gb195005

2016-12-20 Thread Domen Vrankar
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=b195005741d7ec9f766fd2bd0c3d0287fed7ef78 commit b195005741d7ec9f766fd2bd0c3d0287fed7ef78 Merge: ebb7ff5 f7301e6 Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Tue Dec 20 15:13:54 2016 -0500 Commit:

Re: [cmake-developers] not able to push topic to stage

2016-12-20 Thread Domen Vrankar
2016-12-20 18:02 GMT+01:00 Ben Boeckel <ben.boec...@kitware.com>: > On Tue, Dec 20, 2016 at 17:50:02 +0100, Domen Vrankar wrote: > > Has anything changed regarding how topics should be pushed to stage and > > then to next for testing? > > > > When following what'

[cmake-developers] not able to push topic to stage

2016-12-20 Thread Domen Vrankar
Hi, Has anything changed regarding how topics should be pushed to stage and then to next for testing? When following what's written here: https://cmake.org/Wiki/CMake/Git/Develop I get a git hook error: remote: -- remote:

[Cmake-commits] CMake branch, next, updated. v3.7.1-1640-g4bba79a

2016-12-07 Thread Domen Vrankar
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=4bba79ad0ceb753c87c268eb1b66dc3d818223f0 commit 4bba79ad0ceb753c87c268eb1b66dc3d818223f0 Merge: 0921963 e326d8c Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Wed Dec 7 18:13:21 2016 -0500 Commit:

[Cmake-commits] CMake branch, next, updated. v3.7.1-1494-g1301e17

2016-12-03 Thread Domen Vrankar
ns in full, below. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=1301e17efbcf1a286e96240a0aa4082d134f1ea2 commit 1301e17efbcf1a286e96240a0aa4082d134f1ea2 Merge: 3bd5d24 4e4b786 Author: Domen Vrankar <domen.vran

Re: [CMake] CMake 3.7: Test #379: RunCMake.CPack_RPM fails

2016-11-15 Thread Domen Vrankar
2016-11-15 15:16 GMT+01:00 Christoph Grüninger : > Hi Domen, > thanks for your answer. > > > > CMake 3.7 compiles so far, but test #379 (RunCMake.CPack_RPM) fails, > see > > > the error below from OBS. I had a brief look at our patches and I am > apt > > > to think they are

Re: [CMake] CMake 3.7: Test #379: RunCMake.CPack_RPM fails

2016-11-14 Thread Domen Vrankar
2016-11-12 14:38 GMT+01:00 Christoph Grüninger : > Dear CMake folks, > I am trying to package CMake for openSuse. I was a bit surprised that > the new dependency libuv was nowhere mentioned. Can it be disabled by a > configure switch for older systems? > If I remember

Re: [cmake-developers] (Re-)Added RPM Suggested Dependency Support

2016-11-05 Thread Domen Vrankar
2016-11-04 14:15 GMT+01:00 Alexander Adam : > On Freitag, 4. November 2016 09:34:46 CET you wrote: > > > Would you be willing to also write a test for the SUGGESTS tag? > > The tests are located in Tests/RunCMake/CPack, you add the test to > > RunCMakeTest.cmake and

[Cmake-commits] CMake branch, next, updated. v3.7.0-rc3-931-g838fd5c

2016-11-05 Thread Domen Vrankar
g/gitweb?p=cmake.git;a=commitdiff;h=838fd5c3ecc961323affd2a890ff3421edc82f08 commit 838fd5c3ecc961323affd2a890ff3421edc82f08 Merge: 996e95b b34c045 Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Sat Nov 5 07:00:35 2016 -0400 Commit: CMake Topic Stage <kwro...@kitware.com> Co

Re: [cmake-developers] (Re-)Added RPM Suggested Dependency Support

2016-11-04 Thread Domen Vrankar
> > after searching how to use the documented > CPACK_RPM__PACKAGE_SUGGESTS feature, I stumbled across the > following ticket: https://gitlab.kitware.com/cmake/cmake/issues/13423 > > After reading through the discussion, I tried to fix the remaining issues > and > came up with the attached patch

Re: [CMake] CPack DEB version info is missing patch level

2016-10-25 Thread Domen Vrankar
2016-10-25 16:59 GMT+02:00 cen : > > Why is patch level not baked into the DEB but it is in RPM? If install the > deb, soft links have the proper patch level version so I guess it is > ultimately ok but kinda annoying. > Which version of CPack are you using? I can't reproduce

[Cmake-commits] CMake branch, next, updated. v3.7.0-rc1-95-ga01b549

2016-10-06 Thread Domen Vrankar
g/gitweb?p=cmake.git;a=commitdiff;h=a01b5490594eb98063d8354acdd52a03fb46232f commit a01b5490594eb98063d8354acdd52a03fb46232f Merge: 003dceb 7f15429 Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Thu Oct 6 02:54:44 2016 -0400 Commit: CMake Topic Stage <kwro...@kitware.com> Co

[Cmake-commits] CMake branch, next, updated. v3.6.2-2493-g6330c8f

2016-09-26 Thread Domen Vrankar
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=6330c8f70b69e8aac2d05846ad509d9972df2090 commit 6330c8f70b69e8aac2d05846ad509d9972df2090 Merge: afe788b d068b65 Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Mon Sep 26 11:00:53 2016 -0400 Commit:

[Cmake-commits] CMake branch, next, updated. v3.6.2-2463-ge4d7820

2016-09-25 Thread Domen Vrankar
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=e4d782024d3c654c216bbd32d6ad80f43dde5c29 commit e4d782024d3c654c216bbd32d6ad80f43dde5c29 Merge: d1bc55f 3c63947 Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Sun Sep 25 17:55:29 2016 -0400 Commit:

[Cmake-commits] CMake branch, next, updated. v3.6.2-2454-g9f79eb5

2016-09-24 Thread Domen Vrankar
ns in full, below. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=9f79eb5caa5e25b987df8a9ff53b5fc4d84f5e74 commit 9f79eb5caa5e25b987df8a9ff53b5fc4d84f5e74 Merge: 767ee35 1ef45a3 Author: Domen Vrankar <domen.vran

[Cmake-commits] CMake branch, next, updated. v3.6.2-2451-g767ee35

2016-09-24 Thread Domen Vrankar
a28ba9200e commit 767ee352d0d06913b0a4d013bbdd07a28ba9200e Merge: 6294b8b d706b72 Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Sat Sep 24 05:59:44 2016 -0400 Commit: CMake Topic Stage <kwro...@kitware.com> CommitDate: Sat Sep 24 05:59:44 2016 -0400 Merge topi

[Cmake-commits] CMake branch, next, updated. v3.6.2-2446-g6294b8b

2016-09-24 Thread Domen Vrankar
e: 9041fb2 784abda Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Sat Sep 24 05:57:11 2016 -0400 Commit: CMake Topic Stage <kwro...@kitware.com> CommitDate: Sat Sep 24 05:57:11 2016 -0400 Merge topic 'cpack-rpm-debuginfo-sources' into next 784abda5 fixu

Re: [cmake-developers] Linux PGI compiler missing --build-id flag by default

2016-09-23 Thread Domen Vrankar
> On 09/23/2016 06:47 AM, Domen Vrankar wrote: > > I have rpm tests failing on dashboard [1] and it would seem that PGI > compiler > > is missing --build-id flag by default which can be added [2] > > > > Is this default behavior (missing --build-id flag) intended

[cmake-developers] Linux PGI compiler missing --build-id flag by default

2016-09-23 Thread Domen Vrankar
Hi all, I have rpm tests failing on dashboard [1] and it would seem that PGI compiler is missing --build-id flag by default which can be added [2]

[Cmake-commits] CMake branch, next, updated. v3.6.2-2388-g36ab119

2016-09-22 Thread Domen Vrankar
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=36ab1194b924d7b1702993bd250003167bb3ecb1 commit 36ab1194b924d7b1702993bd250003167bb3ecb1 Merge: a11ba9e e677ecd Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Thu Sep 22 13:52:23 2016 -0400 Commit:

[Cmake-commits] CMake branch, next, updated. v3.6.2-2386-ga11ba9e

2016-09-22 Thread Domen Vrankar
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=a11ba9ee3bc679320d48f207535584cbb14a0e8a commit a11ba9ee3bc679320d48f207535584cbb14a0e8a Merge: 11d9a18 0431007 Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Thu Sep 22 13:44:09 2016 -0400 Commit:

[Cmake-commits] CMake branch, next, updated. v3.6.2-2384-g11d9a18

2016-09-22 Thread Domen Vrankar
ns in full, below. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=11d9a18decaffe6cd8941f7e578c54b0b77c579f commit 11d9a18decaffe6cd8941f7e578c54b0b77c579f Merge: 513509a fea1abf Author: Domen Vrankar <domen.vran

[Cmake-commits] CMake branch, next, updated. v3.6.2-2355-gb0e23de

2016-09-22 Thread Domen Vrankar
ns in full, below. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=b0e23de782c19caefdfbbb96a1582eed5817d8cc commit b0e23de782c19caefdfbbb96a1582eed5817d8cc Merge: e893a4c dea14af Author: Domen Vrankar <domen.vran

[Cmake-commits] CMake branch, next, updated. v3.6.2-2330-ge713f05

2016-09-20 Thread Domen Vrankar
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=e713f05af166c0f359c0ffb361503df37c330056 commit e713f05af166c0f359c0ffb361503df37c330056 Merge: 4112469 ccd5f19 Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Tue Sep 20 15:16:14 2016 -0400 Commit:

[Cmake-commits] CMake branch, next, updated. v3.6.2-2289-gc569163

2016-09-19 Thread Domen Vrankar
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=c569163f4fab72d1e8f7c1f066fe864dcc9335fe commit c569163f4fab72d1e8f7c1f066fe864dcc9335fe Merge: 056a102 1bb31cc Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Mon Sep 19 18:18:29 2016 -0400 Commit:

[Cmake-commits] CMake branch, next, updated. v3.6.2-2287-g056a102

2016-09-19 Thread Domen Vrankar
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=056a10260dbf914602c7162c8c6d7b5addace1bb commit 056a10260dbf914602c7162c8c6d7b5addace1bb Merge: 2040474 0ba6b21 Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Mon Sep 19 17:53:23 2016 -0400 Commit:

[Cmake-commits] CMake branch, next, updated. v3.6.1-1819-gea86f38

2016-09-06 Thread Domen Vrankar
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=ea86f387bd68596159f38b18863072769cf3df58 commit ea86f387bd68596159f38b18863072769cf3df58 Merge: ce7f0cb 25899e8 Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Tue Sep 6 13:51:22 2016 -0400 Commit:

[Cmake-commits] CMake branch, next, updated. v3.6.1-1817-gce7f0cb

2016-09-06 Thread Domen Vrankar
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=ce7f0cbce58b4688991df6db0e00b93b53d2 commit ce7f0cbce58b4688991df6db0e00b93b53d2 Merge: 345e669 a1fc946 Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Tue Sep 6 13:49:17 2016 -0400 Commit:

[Cmake-commits] CMake branch, next, updated. v3.6.1-1815-g345e669

2016-09-06 Thread Domen Vrankar
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=345e669b0663a23876c815d46463ea90685bd110 commit 345e669b0663a23876c815d46463ea90685bd110 Merge: d7cc684 9afe1ed Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Tue Sep 6 13:41:38 2016 -0400 Commit:

[Cmake-commits] CMake branch, next, updated. v3.6.1-1794-gd16d98e

2016-09-05 Thread Domen Vrankar
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=d16d98e86a084508666fd9768b779ae0ce96763a commit d16d98e86a084508666fd9768b779ae0ce96763a Merge: ed5cd99 87a9449 Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Mon Sep 5 18:24:15 2016 -0400 Commit:

[Cmake-commits] CMake branch, next, updated. v3.6.1-1792-ged5cd99

2016-09-05 Thread Domen Vrankar
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=ed5cd9993461fabf38e9986dc52b304cd5f2830b commit ed5cd9993461fabf38e9986dc52b304cd5f2830b Merge: 8752d76 d3c1b90 Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Mon Sep 5 17:59:22 2016 -0400 Commit:

[Cmake-commits] CMake branch, next, updated. v3.6.1-1764-g083f180

2016-09-04 Thread Domen Vrankar
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=083f1806004094f87741ba58655d7536dc05aa1d commit 083f1806004094f87741ba58655d7536dc05aa1d Merge: ed02aa4 0d7c971 Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Sun Sep 4 17:10:07 2016 -0400 Commit:

[Cmake-commits] CMake branch, next, updated. v3.6.1-1762-ged02aa4

2016-09-04 Thread Domen Vrankar
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=ed02aa4047c6e5aff30d1cb20ab29678399379c4 commit ed02aa4047c6e5aff30d1cb20ab29678399379c4 Merge: b8ececb e42a399 Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Sun Sep 4 15:15:09 2016 -0400 Commit:

[Cmake-commits] CMake branch, next, updated. v3.6.1-1471-g81bb94a

2016-08-25 Thread Domen Vrankar
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=81bb94aff906c89cd7bc0cf070df1c34c0a4086b commit 81bb94aff906c89cd7bc0cf070df1c34c0a4086b Merge: 33ab8bd 11ad59c Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Thu Aug 25 16:21:14 2016 -0400 Commit:

[Cmake-commits] CMake branch, next, updated. v3.6.1-1453-g5a38fe2

2016-08-25 Thread Domen Vrankar
ns in full, below. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=5a38fe2135c8f421e79027ff0f5d6525c6c4449f commit 5a38fe2135c8f421e79027ff0f5d6525c6c4449f Merge: f80a411 a6d9d78 Author: Domen Vrankar <domen.vran

Re: [cmake-developers] Some CPackRPM Debug print is printing without DEBUG On

2016-07-11 Thread Domen Vrankar
> Doh. Less haste more speed. Thanks. Patch 2. Pushed to next: https://cmake.org/gitweb?p=cmake.git;a=commit;h=49df5d480045ea77295825f2968ec57c4146b5d8 Thanks, Domen -- Powered by www.kitware.com Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ

[Cmake-commits] CMake branch, next, updated. v3.6.0-782-gad63450

2016-07-11 Thread Domen Vrankar
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=ad634507d0155978a0744b5d3b896e696aecc5e1 commit ad634507d0155978a0744b5d3b896e696aecc5e1 Merge: 4ba010d 49df5d4 Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Mon Jul 11 14:55:21 2016 -0400 Commit:

Re: [cmake-developers] Some CPackRPM Debug print is printing without DEBUG On

2016-07-11 Thread Domen Vrankar
2016-07-11 13:50 GMT+02:00 Harry Mallon : > I get this line printed a lot even without CPACK_RPM_PACKAGE_DEBUG turned on. > > "CPackRPM:Debug: Adding >

Re: [CMake] CPack source package install location

2016-07-04 Thread Domen Vrankar
Hi, > I have a very standard CPack configuration for deb package. I have two > questions: > > 1. I generate the deb with: cpack --config CPackConfig.cmake -G "DEB" > > This is supposedly a binary package but when I install it on the machine I > see header files being installed in /usr/include. >

[Cmake-commits] CMake branch, next, updated. v3.6.0-rc2-418-gb661d4a

2016-06-19 Thread Domen Vrankar
e: 828c035 4a10482 Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Sun Jun 19 16:36:55 2016 -0400 Commit: CMake Topic Stage <kwro...@kitware.com> CommitDate: Sun Jun 19 16:36:55 2016 -0400 Merge topic 'cpack-deb-test-fixes' into next 4a104822 CPack/Deb te

Re: [CMake] CCMake is not getting updated

2016-06-09 Thread Domen Vrankar
> And now? Do I have to uninstall cmake 3.5 and install it again? Rebuild (in such cases I usually remove previous build dir as in the past sometimes it did not detect if a new library was added to the environment) and install (install is a dumb command that only copies files so you don't need to

Re: [CMake] CCMake is not getting updated

2016-06-09 Thread Domen Vrankar
> Now I have the right version of cmake (3.5.2), but the ccmake version is > still 2.8.12... How can I update ccmake too? Not 100% certain but my guess would be that you are missing ncurses-devel package and therefore ccmake was not built. sudo yum install ncurses-devel Regards, Domen --

Re: [CMake] CPack and executable permissions on linux

2016-06-08 Thread Domen Vrankar
> This could probably be supported by adding USE_SOURCE_PERMISSIONS for > install(FILES ...) would you be willing to contribute a patch? Misses that this is not cmake-dev mailing list... Patch would still be appreciated but you could also file a feature request (for extending the documentation

[CMake] Fwd: CPack and executable permissions on linux

2016-06-08 Thread Domen Vrankar
> Before running this cmake script, I am setting executable permissions on the > build machine, where the package is created. With install(FILES ...) command permissions set to source file will be ignored by default (this is missing from documentation). You could set permissions with PERMISSIONS

Re: [CMake] cpack ppc64le rhel7.2 CPACK_RPM_PACKAGE_ARCHITECTURE

2016-06-08 Thread Domen Vrankar
> The strange thing is that CMAKE_HOST_SYSTEM_PROCESSOR (outputed by cmake > --system-information) uses the same "uname -m" > see Modules/CMakeDetermineSystem.cmake. > > So there is something odd to have one right and the other wrong... In that case it's quite possible that

Re: [CMake] cpack ppc64le rhel7.2 CPACK_RPM_PACKAGE_ARCHITECTURE

2016-06-08 Thread Domen Vrankar
> I am working on an IBM Power8 RHEL7.2 system and we installed cmake 3.6 > (default cmake from repo was 2.8.12?) but it seems when making a package > the arch is set incorrectly to x86_64 instead of ppc64le. I don't have access to a ppc with Linux but it seems that 'uname -m' (default that is

Re: [cmake-developers] Productbuild CPack generator

2016-06-03 Thread Domen Vrankar
> Does anyone here know if we have test coverage already for some cpack > generators where we create a package, then unpack it to verify the results? > Tests/CPackComponentsDEB (Deb), Tests/CPackComponentsForAll (RPM) and tests in Tests/RunCMake/CPack (at the moment Deb, RPM, TGZ) all verify

[Cmake-commits] CMake branch, next, updated. v3.5.2-1627-g2fdaa20

2016-05-31 Thread Domen Vrankar
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=2fdaa209e13e01fff7186d55c1f11901262534b4 commit 2fdaa209e13e01fff7186d55c1f11901262534b4 Merge: e4bfebd 285d4d0 Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Tue May 31 17:26:23 2016 -0400 Commit:

[Cmake-commits] CMake branch, next, updated. v3.5.2-1625-ge4bfebd

2016-05-31 Thread Domen Vrankar
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=e4bfebdd3f8433b47c265020ab042ebe639765fd commit e4bfebdd3f8433b47c265020ab042ebe639765fd Merge: d85aa58 7f7326e Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Tue May 31 17:08:01 2016 -0400 Commit:

[Cmake-commits] CMake branch, next, updated. v3.5.2-1623-gd85aa58

2016-05-31 Thread Domen Vrankar
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=d85aa5879305fb82da613028dbda41ac66f08c93 commit d85aa5879305fb82da613028dbda41ac66f08c93 Merge: d975bf0 6d72432 Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Tue May 31 17:06:17 2016 -0400 Commit:

[Cmake-commits] CMake branch, next, updated. v3.5.2-1621-gd975bf0

2016-05-31 Thread Domen Vrankar
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=d975bf0ecbf8e10f745585f82397f07aa161fdf9 commit d975bf0ecbf8e10f745585f82397f07aa161fdf9 Merge: b133045 e9985b3 Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Tue May 31 16:30:32 2016 -0400 Commit:

[Cmake-commits] CMake branch, next, updated. v3.5.2-1619-gb133045

2016-05-31 Thread Domen Vrankar
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=b13304569f05d26976ab92a973e000a3eda1a3f5 commit b13304569f05d26976ab92a973e000a3eda1a3f5 Merge: db87c9d 35998cb Author: Domen Vrankar <domen.vran...@gmail.com> AuthorDate: Tue May 31 16:07:23 2016 -0400 Commit:

  1   2   3   4   >