|
|
@@ -12,3 +12,9 @@ if(MSVC_VERSION)
|
|
|
endif(MSVC_VERSION)
|
|
|
string(ASCII 35 32 67 77 97 107 101 ASCII_STRING)
|
|
|
message(STATUS "String: ${ASCII_STRING}")
|
|
|
+get_source_file_property(LANG conly.c LANGUAGE)
|
|
|
+if("${LANG}" STREQUAL "C")
|
|
|
+ message("Language is C")
|
|
|
+else("${LANG}" STREQUAL "C")
|
|
|
+ message(FATAL_ERROR "Bad language for file conly.c")
|
|
|
+endif("${LANG}" STREQUAL "C")
|