[Cmake-commits] CMake branch, master, updated. v3.9.2-751-ge18ab9c

2017-09-08 Thread Kitware Robot
_VERSION_MINOR 9) -set(CMake_VERSION_PATCH 20170908) +set(CMake_VERSION_PATCH 20170909) #set(CMake_VERSION_RC 1) --- Summary of changes: Source/CMakeVersion.cmake |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/

Re: [CMake] cmake install

2017-09-08 Thread Craig Scott
On Sat, Sep 9, 2017 at 11:25 AM, Craig Scott wrote: > > > On Sat, Sep 9, 2017 at 11:19 AM, Adam Getchell > wrote: > >> >> On Sep 8, 2017, at 6:11 PM, Craig Scott wrote: >> >>> >>> I tried: >>> >>> # cmake -G Ninja . >>>

Re: [CMake] cmake install

2017-09-08 Thread Craig Scott
On Sat, Sep 9, 2017 at 11:19 AM, Adam Getchell wrote: > > On Sep 8, 2017, at 6:11 PM, Craig Scott wrote: > >> >> I tried: >> >> # cmake -G Ninja . >> # cmake --build . >> # cmake --build . --target install >> > > This should be correct. Did this

Re: [CMake] cmake install

2017-09-08 Thread Adam Getchell
> On Sep 8, 2017, at 6:11 PM, Craig Scott wrote: > > I tried: > > # cmake -G Ninja . > # cmake --build . > # cmake --build . --target install > > This should be correct. Did this not work for you? No. https://travis-ci.org/acgetchell/CDT-plusplus/jobs/273498700

Re: [CMake] cmake install

2017-09-08 Thread Craig Scott
On Sat, Sep 9, 2017 at 9:56 AM, Adam Getchell wrote: > Hello all, > > If I want to use CMake to invoke my build system, I can use: > > # cmake -- build . > > What’s the syntax for invoking the build system installer from cmake, i.e. > the equivalent of: > > # cmake -G

[CMake] cmake install

2017-09-08 Thread Adam Getchell
Hello all, If I want to use CMake to invoke my build system, I can use: # cmake -- build . What’s the syntax for invoking the build system installer from cmake, i.e. the equivalent of: # cmake -G Ninja . # ninja # ninja install I tried: # cmake -G Ninja . # cmake --build . # cmake --build .

[cmake-developers] Merge multiple static libraries into single static library

2017-09-08 Thread Rich Evans via cmake-developers
Hi all, I have a CMake library project which contains multiple child CMake projects, each of which produces a single static library. I want the output of the parent project to be a single static library, containing all of the child libraries. I have spent a while researching, and found a

Re: [CMake] Create Mac OS Bundle with VTK and Qt

2017-09-08 Thread Oleksii Vilchanskyi via CMake
Hello, > 1) I try to add an icon without success > When I launch my app, the default icon is used and not my icon. Can you elaborate on this? You say that the .icns file is under Resources and the final Info.plist contains the proper key with the proper value and that a non-default icon is used

[cmake-developers] Extending XCode scheme generation support

2017-09-08 Thread Steven Velez
Hello All, I recently noticed that 3.9.1 added the ability for the XCode generator to also generate scheme files. This is great as we have been post processing generator output to add schemes according to our standards, but are discovering various issues with this approach. However, the current

[CMake] Create Mac OS Bundle with VTK and Qt

2017-09-08 Thread Romain LEGUAY
Hello everyone, Since this morning, I try to create a Bundle Application using CMake (3.9.1). My application use VTK (8.x) and Qt (5.x). The find_package of those two libraries works greats (no problem to build and run the application). I have many problems: 1) I try to add an icon without