Performing CMake files

Provide easy-to-use, extensible software for modeling, simulating, controlling, and analyzing the neuromusculoskeletal system.
POST REPLY
User avatar
Alejandro Medina
Posts: 8
Joined: Tue Dec 23, 2014 5:28 am

Performing CMake files

Post by Alejandro Medina » Tue May 05, 2015 9:54 am

Hi,

I'm trying to generate a solution file using CMake. I followed step by step from the tutorial and it isn't working.


Error Message

The C compiler identification is unknown
The CXX compiler identification is unknown
CMake Error at CMakeLists.txt:8 (PROJECT):
No CMAKE_C_COMPILER could be found.

CMake Error at CMakeLists.txt:8 (PROJECT):
No CMAKE_CXX_COMPILER could be found.

Configuring incomplete, errors occurred!
See also "C:/Users/practicanteidi/Desktop/ModelacionCODO/build/CMakeFiles/CMakeOutput.log".
See also "C:/Users/practicanteidi/Desktop/ModelacionCODO/build/CMakeFiles/CMakeError.log".

User avatar
Ayman Habib
Posts: 2236
Joined: Fri Apr 01, 2005 12:24 pm

Re: Performing CMake files

Post by Ayman Habib » Tue May 05, 2015 10:14 am

Hi,

The error message suggests that CMake cannot find a working C or C++ (CXX) compiler on your machine. Either you don't have one (e.g. VisualStudio on Windows is not installed), the one you have is not working or the wiring to CMake to the compilers is not correct. In the last case, you'll need to search CMake documentation/support to find out the reason or send more details to help you troubleshoot further.

Best regards,
-Ayman

User avatar
Alejandro Medina
Posts: 8
Joined: Tue Dec 23, 2014 5:28 am

Re: Performing CMake files

Post by Alejandro Medina » Tue May 05, 2015 10:35 am

Hi,

Thanks, I had to select another version of VisualStudio; I've installed VS 2013 and I was selecting VS2010

POST REPLY