Steve Johns wrote:
In NRC206:

ADD_LIBRARY(NRC206 ADDINT.C  ...)

CMake considers upper-case "C" to be a C++ extension by default because is a common convention on UNIX, and Windows is case-insensitive. Try adding the files like this:

ADD_LIBRARY(NRC206 addint.c ...)

-Brad
_______________________________________________
CMake mailing list
CMake@cmake.org
http://www.cmake.org/mailman/listinfo/cmake

Reply via email to