Eventually I figured out the answer to this question after stepping through
the CMake project code.
DO:
enable_language(CSharp)
DONT:
enable_language(CSHARP)
Unlike C, CXX, FORTRAN, etc. CSharp is not an abbreviation requiring
capitalization of all letters. Case matters.
On Thu, Mar 16, 2017 a
I'm trying to test out the C# features added to 3.8.0. A few things:
+ I couldn't find any documentation as to what the language name for CSHARP
was in the enable_language documentation page
+ When I tried enable_language(CSHARP), I got some errors
CMake Error at CMakeLists.txt:4 (enable_langua