[CMake] how to compile as 64bit on win

2013-03-06 Thread Martin Koller
I'm using a current developers snapshot of cmake to include the fix of http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=add8d22acc9417cb144a0b497f4f5ef330bfc680 However, a simple cmake file project(test) message(${CMAKE_SYSTEM_PROCESSOR}) always gives me "x86". This is on a win8 machine and c

[CMake] CPack source packaging

2013-03-06 Thread Szőts Ákos
Dear list members, I made a project with CMake (2.8.10) on Linux and want to use CPack to create its source .tar.bz2 file. The task is really simple: copy all of the *.cpp and *.h files into the .tar.bz2 file preserving the directory structure. Although sounds really simple, I've yet to find a

Re: [CMake] how to compile as 64bit on win

2013-03-06 Thread Martin Koller
On Wednesday 06 March 2013 09:57:09 Koller, Martin wrote: > I'm using a current developers snapshot of cmake to include the fix of > http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=add8d22acc9417cb144a0b497f4f5ef330bfc680 > > However, a simple cmake file > > project(test) > message(${CMAKE_SYS

[CMake] Target name not (any longer) supported

2013-03-06 Thread Martin Koller
Testing the current cmake snapshot (on win8, VS 2010) shows error messages which I did not have with the latest released cmake version: CMake Error: Error evaluating generator expression: $ Target name not supported. The target is defined as add_library(agent++ STATIC ${SOURCES}) Is t

Re: [CMake] Check for working C compiler using: Visual Studio 10 -- broken

2013-03-06 Thread Mateusz Loskot
On 5 March 2013 17:09, Bill Hoffman wrote: > On 3/5/2013 11:40 AM, Mateusz Loskot wrote: >> >> Nice tip with the solution in the CMakeTmp, I had no idea about it. >> >> I figured out that the VS2010 project there, >> cmTryCompileExec3417082516.vcxproj, >> specifies for linker /INCREMENTAL:YES >>

Re: [CMake] CPack source packaging

2013-03-06 Thread Eric Noulard
2013/3/6 Szőts Ákos : > Dear list members, > > I made a project with CMake (2.8.10) on Linux and want to use CPack to create > its source .tar.bz2 file. > > The task is really simple: copy all of the *.cpp and *.h files into the > .tar.bz2 file preserving the directory structure. > > Although sound

Re: [CMake] Target name not (any longer) supported

2013-03-06 Thread Benjamin Kloster
Same here with a target named "gdcp++". Seems to be a problem with the plus sign. On 03/06/2013 10:55 AM, Martin Koller wrote: Testing the current cmake snapshot (on win8, VS 2010) shows error messages which I did not have with the latest released cmake version: CMake Error: Error evaluatin

Re: [CMake] Target name not (any longer) supported

2013-03-06 Thread Benjamin Kloster
Title: Vorlage VIDELCO Europe Limited I've created an issue in the bug tracker http://www.cmake.org/Bug/view.php?id=13986 with an attached diff to re-allow plus signs. On 03/06/2013 01:48 PM, Benjamin Kloster wrote: Same here w

Re: [CMake] how to compile as 64bit on win

2013-03-06 Thread Rolf Eike Beer
Martin Koller wrote: > On Wednesday 06 March 2013 09:57:09 Koller, Martin wrote: > > I'm using a current developers snapshot of cmake to include the fix of > > http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=add8d22acc9417cb144a0b4 > > 97f4f5ef330bfc680 > > > > However, a simple cmake file > >