Re: [CMake] Problem using VS 2012 Express and CMake

2013-10-06 Thread Daniel S. Reichenbach
Hi, Anyway, long story short: I'm fairly certain that its currently not possible to build cmake projects with visual studio express 2012 on windows 7. Use CMake 2.8.11 and it will work, there seems to be a fix in there. Had to use the VS2011 generator but it works. Test in a Windows 7 x64 virtu

Re: [CMake] Problem using VS 2012 Express and CMake

2013-10-06 Thread Doug
I installed visual studio express on a brand new windows 7 machine yesterday (brand new installed; liteally all it has on it is visual studio express 12 and cmake), and I encountered similar troubles. 1) As described in this thread, msbuild wasn't found by default: http://stackoverflow.com/questio

Re: [CMake] Empty CPack variables

2013-10-06 Thread Andreas Pakulat
Hi, On Sun, Oct 6, 2013 at 10:13 PM, Pau Garcia i Quiles wrote: > Hello, > > I am using CMake 2.8.11.2 on Windows to build and package some software. > If I do this, it works fine: > >set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Wt binary build") >set(CPACK_PACKAGE_VENDOR "emweb bvba") >set

Re: [CMake] Empty CPack variables

2013-10-06 Thread Eric Noulard
2013/10/6 Pau Garcia i Quiles : > Hello, > > I am using CMake 2.8.11.2 on Windows to build and package some software. If > I do this, it works fine: > >set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Wt binary build") >set(CPACK_PACKAGE_VENDOR "emweb bvba") >set(CPACK_PACKAGE_DESCRIPTION_FILE >

[CMake] Empty CPack variables

2013-10-06 Thread Pau Garcia i Quiles
Hello, I am using CMake 2.8.11.2 on Windows to build and package some software. If I do this, it works fine: set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Wt binary build") set(CPACK_PACKAGE_VENDOR "emweb bvba") set(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/ReadMe.txt") set

[CMake] cmake make generator do not handle header source dependicies?

2013-10-06 Thread Evgeniy Dushistov
In attachment(Is mail list accpet attachments?) simple example with test.cpp and test.h. test.cpp include test.h. I generate on linux with help of cmake (2.8.11.2) make files, build it, then exec "touch test.h", after that rerun make, and it do nothing: $ mkdir build && cd build $ cmake .. && make

Re: [CMake] [PATCH] SunStudio 12 regex for CheckCCompilerFlags.cmake

2013-10-06 Thread Rolf Eike Beer
Am Sonntag, 6. Oktober 2013, 09:51:36 schrieb William Orr: > On Sep 30, 2013, at 10:14 AM, Rolf Eike Beer wrote: > > Am Montag, 30. September 2013, 16:15:07 schrieb William Orr: > >> This macro currently doesn't properly match warnings emitted by SunStudio > >> 12. This patch fixes that. > > > >

Re: [CMake] [PATCH] SunStudio 12 regex for CheckCCompilerFlags.cmake

2013-10-06 Thread William Orr
On Sep 30, 2013, at 10:14 AM, Rolf Eike Beer wrote: > Am Montag, 30. September 2013, 16:15:07 schrieb William Orr: >> This macro currently doesn't properly match warnings emitted by SunStudio >> 12. This patch fixes that. > > I guess this also applies to the C++ compiler? Please rebase this chan