Re: [CMake] no convenience target for generated files?

2015-06-01 Thread Dave Yost
0 Mon 19:44:33 yost DaveBook ~/p/c++/cmake/target-for-generate/build 261 Z% make help The following are some of the valid targets for this Makefile: ... all (the default if no target is provided) ... clean ... depend ... edit_cache ... rebuild_cache ... foo ... genBar ... bar ... foo.o ... foo.i .

Re: [CMake] Not finding boost

2015-06-01 Thread Dave Yost
Also, from what I can make of CMake.app/Contents/share/cmake-3.2/Modules/FindBoost.cmake findBoost looks in /sw/local/ which is a path from the old, old Fink package system for OS X. findBoost should also look in /usr/local (Homebrew and long unix tradition) /opt/local (MacPorts)

Re: [CMake] Not finding boost

2015-06-01 Thread Dave Yost
> On 2015-06-01, at 2:28 PM, Dave Yost wrote: > > The boost I want is not in a normal location, but: > Boost's include dir is first in my CPATH. > Boost's lib dir is first in my LD_LIBRARY_PATH. > > Why doesn't cmake 3.2.2 find it? > > I'm not being picky about the version. In other words, wh

[CMake] Virtual folders in Visual studio get expanded on reload

2015-06-01 Thread Roman Wüger
Hi, I noticed that sometimes when a target is reloaded, that the virtual folders and targets for the complete visual studio solution get expanded. For a small project this isn't a problem, but in a large project (~ 100 targets) this is a really big problem to close all targets every time. Did a

[CMake] XAML files fo Visual Studio (WP8.1) is not working?

2015-06-01 Thread 1 1
I try add to my project *.xaml files, but xaml files adds to solutionincorrect. For example, i have App.xaml, App.xaml.cpp and App.xaml.h. In solution these files must be gropped and App.xaml must be have "XAML Page" or "XAML Application Definition" item type. But these files is not grupped, and

[CMake] Not finding boost

2015-06-01 Thread Dave Yost
The boost I want is not in a normal location, but: Boost's include dir is first in my CPATH. Boost's lib dir is first in my LD_LIBRARY_PATH. Why doesn't cmake 3.2.2 find it? I'm not being picky about the version. -- Powered by www.kitware.com Please keep messages on-topic and check the CMake F

[CMake] [ANNOUNCE] CMake 3.2.3 Released

2015-06-01 Thread Robert Maynard
We are pleased to announce that CMake 3.2.3 is now available for download. Please use the latest release from our download page: http://www.cmake.org/download/ Thanks for your support! - Changes in 3.2.3 since 3.2.2: Brad

Re: [CMake] Visual Studio 2013, increamental builds, intermediate directories and long target names

2015-06-01 Thread david_bjornbak
I appreciate the feedback on this issue. Deterministically generating a GUID sounds like a real solution. ++David->Bjornbak; -Original Message- From: Brad King [mailto:brad.k...@kitware.com] Sent: Monday, June 01, 2015 12:09 PM To: BJORNBAK,DAVID (K-Sonoma,ex1) Cc: Dan Kegel; cmake; Bil

Re: [CMake] Visual Studio 2013, increamental builds, intermediate directories and long target names

2015-06-01 Thread Brad King
On 05/31/2015 12:43 PM, Dan Kegel wrote: > Did you try the workaround suggested in the first link you gave, i.e. > > set( RatherLongLibraryName_GUID_CMAKE CACHE INTERNAL > "remove this and Visual Studio will mess up incremental builds") > > On Sun, May 31, 2015 at 9:04 AM, david_bjorn...@keysigh

[CMake] CMake 3.2.2 generates too many virtual folders for Codeblocks project

2015-06-01 Thread c roman
Hi, i have a project in the path D:\folder1\folder2\prj1, all sources and CMakeLists.txt are in this folder 'prj1'. CMake generates for the Codeblocks project file in which the source files are located in a virtual folders with the path not corresponding to the root folder of the project 'prj1'

[CMake] Can't cd to DOWNLOAD_DIR

2015-06-01 Thread Cedric Doucet
Hello, in the ExternalProject_add function, I would like to access to DOWNLOAD_DIR to download a patch (for ARPACK). So, I define my patch command like this: == PATCH_COMMAND cd && wget /myurl/mypatch.tar.gz && cd && tar xvzf /mypatch.tar

[CMake] Conditional transitive link libraries

2015-06-01 Thread Daniel Wirtz
Hello all, I'm struggling with the CMake "Config"-based package description when using two depending packages where the upstream package has optional link libraries. Suppose you have libA that optionally uses zip functionality (say by some option USE_ZLIB in libA's CMakeLists.txt). This mean