cmake error:Error in configuration files. Project Files may be invalid

前端 未结 2 1890
梦如初夏
梦如初夏 2020-12-18 13:45

I am new to the cmake. I wrote a simple cmake file and ran it in the cmake GUI. But it is displaying as follows

Error in configuration files. Project Files may be i

相关标签:
2条回答
  • 2020-12-18 14:40

    I think that it is just as the error message reads, you need a newline after you specify the required version. Therefore your code should be like:

    make_minimum_required (VERSION 2.6) 
    project (Tutorial)
    add_executable (Tutorial Tutorial.c)
    
    0 讨论(0)
  • 2020-12-18 14:43

    What operating system are you on? Is it possible that you have the wrong kind of newline character in your file?

    In all flavors of Windows (and DOS), the new line should be a carriage return (ASCII 13) and line feed (ASCII 10). On older Macs, the new line should be just a carriage return (ASCII 13). On Linux and Unix (including Mac OS X), the new line should be a line feed (ASCII 10).

    0 讨论(0)
提交回复
热议问题