[CMake] CMake + NSIS on windows

2012-01-25 Thread Andrea Crotti
Since I still don't get CMake + NSIS running on Linux, I was trying to build my software on Windows... I installed CMake and NSIS and all my CMake actually does is to create an installer: cmake_minimum_required(VERSION 2.6) project(try_out) install( # is this automatically the source dir

Re: [CMake] CMake + NSIS on windows

2012-01-25 Thread Andrea Crotti
On 01/25/2012 02:28 PM, Andrea Crotti wrote: Since I still don't get CMake + NSIS running on Linux, I was trying to build my software on Windows... I installed CMake and NSIS and all my CMake actually does is to create an installer: cmake_minimum_required(VERSION 2.6) project(try_out

Re: [CMake] CMake + NSIS on windows

2012-01-25 Thread Andrea Crotti
Now however CMake complains that it can't fin nmake, which from my search it's something it's this: http://superuser.com/questions/146577/where-do-i-find-nmake-for-windows-7 so cmake . generated by default the nmake files, but why cpack would need nmake for in the first place if I'm just using

Re: [CMake] CMake + NSIS on windows

2012-01-25 Thread Bill Hoffman
On 1/25/2012 9:28 AM, Andrea Crotti wrote: Since I still don't get CMake + NSIS running on Linux, I was trying to build my software on Windows... CMake and NSIS has never been ported to work on Linux, so no surprise there. I installed CMake and NSIS and all my CMake actually does

Re: [CMake] CMake + NSIS on windows

2012-01-25 Thread Andrea Crotti
On 01/25/2012 02:49 PM, Bill Hoffman wrote: On 1/25/2012 9:28 AM, Andrea Crotti wrote: Since I still don't get CMake + NSIS running on Linux, I was trying to build my software on Windows... CMake and NSIS has never been ported to work on Linux, so no surprise there. Wait, this contradicts

Re: [CMake] CMake + NSIS on windows

2012-01-25 Thread Andrea Crotti
On 01/25/2012 02:48 PM, Andrea Crotti wrote: Now however CMake complains that it can't fin nmake, which from my search it's something it's this: http://superuser.com/questions/146577/where-do-i-find-nmake-for-windows-7 so cmake . generated by default the nmake files, but why cpack would need

Re: [CMake] CMake + NSIS on windows

2012-01-25 Thread Eric Noulard
2012/1/25 Bill Hoffman bill.hoff...@kitware.com: On 1/25/2012 9:28 AM, Andrea Crotti wrote: Since I still don't get CMake + NSIS running on Linux, I was trying to build my software on Windows... CMake and NSIS has never been ported to work on Linux, so no surprise there. In fact