[CMake] Using msbuild

2010-11-01 Thread Thomas Lehmann
Hi all, on Unix I can use make install but I have no clue how do it on windows. Can somebody please help? This is what I have defined in my demo environment: install(TARGETS app2 RUNTIME DESTINATION ${CMAKE_BINARY_DIR}/bin) Try: msbuild Project.sln /target:install INSTALL: The project

Re: [CMake] Using msbuild

2010-11-01 Thread David Cole
If you open up the sln file in Visual Studio, is there an INSTALL target? You can try using cmake --build on the command line: cmake --build . --target install --config Debug Should work... Let us know, David On Mon, Nov 1, 2010 at 8:30 AM, Thomas Lehmann t.lehm...@rtsgroup.netwrote: Hi

Re: [CMake] Using msbuild

2010-11-01 Thread Thomas Lehmann
: Montag, 1. November 2010 14:22 To: Thomas Lehmann Cc: cmake@cmake.org Subject: Re: [CMake] Using msbuild If you open up the sln file in Visual Studio, is there an INSTALL target? You can try using cmake --build on the command line: cmake --build . --target install --config Debug Should work

Re: [CMake] Using msbuild

2010-11-01 Thread Bill Hoffman
On 11/1/2010 9:46 AM, Thomas Lehmann wrote: Perfect! Why does it not work with “msbuild” directly? Kind Regards Thomas f:\Checkouts\prototyping\cmake_sandbox\objcmake --build . --target install Microsoft (R) Visual Studio Version 9.0.21022.8. Copyright (C) Microsoft Corp. Alle Rechte

Re: [CMake] using msbuild for x64 builds

2007-08-20 Thread Brandon Van Every
On 8/20/07, Reggie Burnett [EMAIL PROTECTED] wrote: We are using cmake for our internal Windows builds and want to migrate away from using Vs 2005 on our unattended builds. The main option, AIUI, is nmake but I would prefer to use msbuild. What is inadequate about devenv? Cheers, Brandon Van