[Cmake-commits] CMake branch, master, updated. v3.14.1-669-g784c35b

2019-04-09 Thread Kitware Robot via Cmake-commits
t a/Source/CMakeVersion.cmake b/Source/CMakeVersion.cmake index 4951c02..4571566 100644 --- a/Source/CMakeVersion.cmake +++ b/Source/CMakeVersion.cmake @@ -1,5 +1,5 @@ # CMake version number components. set(CMake_VERSION_MAJOR 3) set(CMake_VERSION_MINOR 14) -set(CMake_VERSION_PATCH 20190409) +set(CMake_VER

Re: [CMake] Setting permissions with CPack/WiX installer

2019-04-09 Thread Cook, Steven (G)
> I have made a very simple example that generates a WIX installer for a > single file but fails to set the permissions on the file. Do you have any > suggestions of why this isn't working? Problem solved - when cpack is run with no parameters, the permissions tags are not generated, but when run

Re: [CMake] RC compilation failing

2019-04-09 Thread Zan Lynx
On April 9, 2019 1:51:52 PM MDT, "Gonzalo Garramuño" wrote: >I had a resource.rc file and a resource.h file with just an ICON to >provide the icon to my application.  However, since a week or so ago, >RC >refuses to compile it, giving the not very helpful message: > >Microsoft (R) Windows (R)

[Cmake-commits] CMake branch, release, updated. v3.14.1-13-g127d0ea

2019-04-09 Thread Kitware Robot via Cmake-commits
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, release has been updated via 127d0ea2a660507c3f629bcf934e6863f60c09db (commit) via

[Cmake-commits] CMake branch, master, updated. v3.14.1-668-g6aef0aa

2019-04-09 Thread Kitware Robot via Cmake-commits
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, master has been updated via 6aef0aa5fe2fa85342f3903f8e9ac0afdc62aa07 (commit) via

Re: [CMake] Ubuntu CMake Repository Now Available

2019-04-09 Thread Kyle Edwards via CMake
Rebuilt for 18.04 and verified to depend on libcurl4. The new package version is "3.14.1-0kitware1ubuntu18.04.1". Kyle On Tue, 2019-04-09 at 13:38 -0700, Benjamin Shadwick wrote: > I believe it's possible to specify an "or" rule so that it would work > with either package. It should probably

[Cmake-commits] CMake branch, master, updated. v3.14.1-666-g0a29875

2019-04-09 Thread Kitware Robot via Cmake-commits
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, master has been updated via 0a29875313566c12cbc16391fc23dbe2da8c5c18 (commit) via

Re: [CMake] Ubuntu CMake Repository Now Available

2019-04-09 Thread Benjamin Shadwick
I believe it's possible to specify an "or" rule so that it would work with either package. It should probably require the one it's built against though, or at least prefer it if it works with both. On Tue, Apr 9, 2019 at 12:32 PM Hahn, Steven E. via CMake wrote: > Would you consider updating

[CMake] RC compilation failing

2019-04-09 Thread Gonzalo Garramuño
I had a resource.rc file and a resource.h file with just an ICON to provide the icon to my application.  However, since a week or so ago, RC refuses to compile it, giving the not very helpful message: Microsoft (R) Windows (R) Resource Compiler Version 6.3.9600.17336 Copyright (C) Microsoft

Re: [CMake] Ubuntu CMake Repository Now Available

2019-04-09 Thread Hahn, Steven E. via CMake
Would you consider updating the Ubuntu 18.04 package to depend on libcurl4? Unfortunately libcurl3 conflicts with libcurl4, and I need to keep the later installed for packages that depend on it. The Ubuntu-provided CMake package appears to be built against libcurl4. Steven On 4/5/19, 3:17

Re: [CMake] Remove compilation flags for a given target

2019-04-09 Thread Florent Castelli
I believe that your targets should be using something like: target_compile_options(yourlib PRIVATE -Wwhatever) They will be built with said warnings, but it won't be propagated to consumers of the library. So you shouldn't have to remove anything. On Tue, Apr 9, 2019 at 8:47 AM Benjamin Orgogozo

[CMake] Working around target needing many include directories

2019-04-09 Thread Israel Israeli
We are using a library that adds all of it's subdirectories to the include search path (hundreds of directories and thousands of files). This is done because they change their folder structure constantly (but we don't care as we are upgrading every once in a while and can adjust). We don't want

[CMake] Configuration time "custom command"

2019-04-09 Thread Israel Israeli
Hello, We are using a large project that comes with it's own build and configuration system. We have multiple issues with this external build system and we want to move the building of this project to cmake (as well as our code that depends on it). All the problems are related to the `build` step

[Cmake-commits] CMake branch, release, updated. v3.14.1-11-gdff6158

2019-04-09 Thread Kitware Robot via Cmake-commits
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, release has been updated via dff61585f3ed3973b52db9a90493f132d809677c (commit) via

[Cmake-commits] CMake branch, master, updated. v3.14.1-653-g6b126c4

2019-04-09 Thread Kitware Robot via Cmake-commits
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, master has been updated via 6b126c47bd0b90f2af9f800910054b3139667a73 (commit) via

[Cmake-commits] CMake branch, master, updated. v3.14.1-650-g3d15ae4

2019-04-09 Thread Kitware Robot via Cmake-commits
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, master has been updated via 3d15ae4ea121ba68572f0314a93b756ed2659e09 (commit) via

[Cmake-commits] CMake branch, master, updated. v3.14.1-641-g284429a

2019-04-09 Thread Kitware Robot via Cmake-commits
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, master has been updated via 284429ac879a91fe00e6f2c773b9a0d187667b9b (commit) via

Re: [CMake] Remove compilation flags for a given target

2019-04-09 Thread Benjamin Orgogozo
On Fri, Apr 05, 2019 at 07:56:25PM -0700, Marc Herbert wrote: >Instead of removing, have you tried appending the -Wno-fubar flag that >turns back off these >specific warnings for these specific files? Ah, yes, it will actually work... Not the answer that I was expecting but clearly a

Re: [CMake] Remove compilation flags for a given target

2019-04-09 Thread Benjamin Orgogozo
On Thu, Apr 04, 2019 at 06:00:43PM +0200, Mateusz Loskot wrote: > The list should rather be, in preference/priority order > > 1. https://cmake.org/cmake/help/latest/command/target_compile_options.html > 2. add_compile_options Yes, it's what I understood from documentation. > Are you certain

Re: [CMake] Setting permissions with CPack/WiX installer

2019-04-09 Thread Cook, Steven (G)
Hi Nils, > From a command line environment where your compiler is properly set up and > ninja is in PATH configure the root of the project with the Ninja generator > (currently hardcoded in the tests); use an out of source build directory and > set the REFERENCE_CMAKE_BIN_DIR cache variable to