MantisBT - CMake
View Issue Details
0015624CMakeCMakepublic2015-06-19 07:102016-01-04 11:51
Micha Renner 
 
normalmajoralways
closedno change required 
Windows8.1
CMake 3.2.1 
 
0015624: CMake Error: Could not find cmake module file: CMakeDetermineLANGUAGECompiler.cmake
Also CMake 3.3.0.rc1

It seems, that the file does not exists.
PROJECT(tm LANGUAGE C)
No tags attached.
Issue History
2015-06-19 07:10Micha RennerNew Issue
2015-06-19 08:44Brad KingNote Added: 0038954
2015-06-19 08:44Brad KingStatusnew => resolved
2015-06-19 08:44Brad KingResolutionopen => no change required
2016-01-04 11:51Robert MaynardNote Added: 0040074
2016-01-04 11:51Robert MaynardStatusresolved => closed

Notes
(0038954)
Brad King   
2015-06-19 08:44   
The project() command documentation:

 http://www.cmake.org/cmake/help/v3.3/command/project.html [^]

shows an option called "LANGUAGES", not "LANGUAGE". With the latter it thinks you're trying to enable a language called "LANGUAGE" and expecting to find the supporting files in CMAKE_MODULE_PATH. You can use either

 project(tm C)

or

 project(tm LANGUAGES C)
(0040074)
Robert Maynard   
2016-01-04 11:51   
Closing resolved issues that have not been updated in more than 4 months.