tags:

views:

257

answers:

2

Hello,

I'd like to use CMake to compile code consisting of C++, C++/CLI and C# code. I know that there are some unofficial macros to support C# code. Has anyone used them? What is their quality? Are they dependable? Do they replicate VS9/MSBuild functionality?

A: 

Here is a sample C# Macros file for CMake - click here. To be honest, I haven't tried it myself, but it looks ok.

CraigS
+1  A: 

I was exploring ways of configuring c# projects using cmake here. Unfortunately, cmake is limited by only being able to create c++ projects. While the solution can be built just fine, you'll be missing a lot from a normal cs project like Intellisense for example.

Leonid