[Cmake-commits] CMake branch, master, updated. v3.13.3-957-g92d1321

2019-01-17 Thread Kitware Robot via Cmake-commits
t a/Source/CMakeVersion.cmake b/Source/CMakeVersion.cmake index dd9eccd..245bd71 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 13) -set(CMake_VERSION_PATCH 20190117) +set(CMake_VER

Re: [CMake] CPack and WIX: Preselected components

2019-01-17 Thread Kyle Edwards via CMake
Micha, Unfortunately, the WiX generator does not currently support component installation, which is what's needed to make the INSTALL_TYPES argument work. We would welcome a merge request which adds this support. Kyle On Thu, 2019-01-17 at 19:28 +0100, Micha Renner wrote: > With the NSIS

[CMake] CPack and WIX: Preselected components

2019-01-17 Thread Micha Renner
With the NSIS generator I can create a dialog with a drop_down list with two elements default and developer. Default is selected by default when the dialog starts, so the default parts of the package are installed. Selecting developer the devlop parts are installed and the default files not. How

[CMake] Qt translation handling

2019-01-17 Thread Francis Giraldeau
Here is a small snipped I wanted to share about generation of qt translation files. The Qt translations are managed using two files: ts and qm. The ts files are edited by translators and updated from source files. Therefore, they must be added to the repository. To include the translations in

[Cmake-commits] CMake branch, master, updated. v3.13.3-956-g68e20f6

2019-01-17 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 68e20f674a48be38d60e129f600faf7c483f2b97 (commit) via

[Cmake-commits] CMake branch, master, updated. v3.13.3-954-gbd3685b

2019-01-17 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 bd3685b6cfac90bb553df0330e1732c066fe7dca (commit) via

Re: [CMake] [CMake 3.13.3] [MSBuild] Issue on configure/generate Visual Studio 2017 Project

2019-01-17 Thread Robert Maynard via CMake
If the problem only occurs when using the command line shell it might be related to other environment variables in the shell. On Tue, Jan 15, 2019 at 5:20 AM Kail, Rajmund (GE Healthcare) < rajmund.k...@ge.com> wrote: > Dear All, > > > > I have another observation. The project is generated

Re: [CMake] FindPkgConfig and using -m32 on Linux

2019-01-17 Thread Jan Wielemaker
I'll answer myself. As the answer is a little contra intuitive, I'll post it :) After copying FindPkgConfig.cmake locally and adding a lot of message() to it, I discovered a couple of things: - As FindPkgConfig claims, CMAKE_PREFIX_PATH, etc are added to the search if

[CMake] FindPkgConfig and using -m32 on Linux

2019-01-17 Thread Jan Wielemaker
Hi, I'm trying to build a complicated package for 32-bits on 64-bit Ubuntu. I got very far using set(CMAKE_C_FLAGS -m32) set(CMAKE_LIBRARY_ARCHITECTURE i386-linux-gnu) But right now, find_package(OpenSSL) is failing. I think the problem is with FindOpenSSL.cmake doing this (Ubuntu