Monday 30 May 2016

Can CMake Create Solution for Visual Studio Express 2010

Is CMake able to create solutions for Visual Studio Express 2010?




I'm trying to create a Visual Studio solution that will work with Visual Studio Express 2010 (for C++) but I keep running into issues. Whenever I try building the solution in Visual Studio I get the error Invalid license data. Reinstall is required.



In the output window I also see messages that state:



-- The C compiler identification is unknown.
-- The C++ compiler identification is unknown.

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...