Re: [CMake] VC2015 and Windows 7 compatibility

2017-09-20 Thread Elvis Stansvik
2017-09-21 0:20 GMT+02:00 Gonzalo Garramuño : > > > El 20/09/2017 a las 04:44, Elvis Stansvik escribió: >> >> 2017-09-20 7:53 GMT+02:00 Elvis Stansvik : >>> >>> 2017-09-19 23:22 GMT+02:00 Gonzalo Garramuño : El 19/09/2017 a las 15:19, J Decker escribió: > > you can just insta

Re: [CMake] VC2015 and Windows 7 compatibility

2017-09-20 Thread Gonzalo Garramuño
El 20/09/2017 a las 04:44, Elvis Stansvik escribió: 2017-09-20 7:53 GMT+02:00 Elvis Stansvik : 2017-09-19 23:22 GMT+02:00 Gonzalo Garramuño : El 19/09/2017 a las 15:19, J Decker escribió: you can just install the runtime redistributuable for 2015... https://www.microsoft.com/en-us/download

Re: [CMake] CMake tutorial on Github

2017-09-20 Thread paul via CMake
This looks good, a couple of comments: - A common misconception for libraries is to generate a Find module for downstream users. You don't suggest that in the tutorial, but in the section "Shipping Find Module scripts" it would be a good idea to emphasize that is for upstream libraries not downstr

Re: [CMake] CMake tutorial on Github

2017-09-20 Thread Haocheng Liu
Hi Máté, You can also take a look at this github repo: https://github.com/onqtam/awesome-cmake There are also many cool examples and tutorials. On Wed, Sep 20, 2017 at 10:36 AM, Nagy-Egri Máté Ferenc via CMake < cmake@cmake.org> wrote: > Hi fellow CMakers! > > > > As part of a university course

[CMake] CMake 3.9.3 available for download

2017-09-20 Thread Robert Maynard
We are pleased to announce that CMake 3.9.3 is now available for download. Please use the latest release from our download page: https://cmake.org/download/ Thanks for your support! - Changes in 3.9.3 since 3.9.2: Brad Ki

[CMake] C++/CLI Wrapper with C#

2017-09-20 Thread J. Caleb Wherry
All, I recently upgraded to CMake 3.8 to get support for C# as a first class language and it works nicely. However, I am seeking clarification on something: I currently compile my C++/CLI wrapper as a SHARED lib. This produces a linking lib which I didn't expect and don't want (using the lib work

[CMake] CMake tutorial on Github

2017-09-20 Thread Nagy-Egri Máté Ferenc via CMake
Hi fellow CMakers! As part of a university course and an attempt to safeguard my time against all the one-to-one CMake tutorials I have held thus far, I have created a free CMake tutorial available here. It is fairly basic, in its current form is more or less just a jump-start guide. I wanted t

[CMake] Fwd: Re: VC2015 and Windows 7 compatibility

2017-09-20 Thread Gonzalo Garramuño
El 19/09/2017 a las 13:57, Elvis Stansvik escribió: I also build on Win 8.1/MSVC 2015, targeting Windows 7+, and what I do is basically: if(WIN32) add_definitions(/D_WIN32_WINNT=0x0601) # Target Windows 7+ set(CMAKE_INSTALL_SYSTEM_RUNTIME_DESTINATION ".") set(CMAKE_INSTALL_UCRT_

Re: [CMake] ​Visual Studio 2017

2017-09-20 Thread Thompson, KT
Andrew, Thanks for the example. Your workflow is very similar to mine. I setup environments for Qt, Git, LLVM, LAPACK, Metis, Parmetis, Microsoft MPI, etc. -kt From: Andrew Maclean [mailto:andrew.amacl...@gmail.com] Sent: Tuesday, September 19, 2017 7:33 PM To: cmake@cmake.org; Thompson, KT ;

Re: [CMake] VC2015 and Windows 7 compatibility

2017-09-20 Thread Gonzalo Garramuño
El 19/09/2017 a las 18:28, Robert Maynard escribió: I believe if you want to compile with XP support you can also specify that as part of the Toolset string. So from a clean build directory: make -G "Visual Studio 14 2015" -T v140_xp Unfortunately I am using Makefiles ( Ninja ) which do not s

Re: [CMake] VC2015 and Windows 7 compatibility

2017-09-20 Thread Elvis Stansvik
2017-09-20 7:53 GMT+02:00 Elvis Stansvik : > 2017-09-19 23:22 GMT+02:00 Gonzalo Garramuño : >> >> >> El 19/09/2017 a las 15:19, J Decker escribió: >>> >>> you can just install the runtime redistributuable for 2015... >>> >>> https://www.microsoft.com/en-us/download/details.aspx?id=48234 >> >> Unfor