Addin that extends Cake with CMake support.
Stable | Pre-release |
---|---|
develop | master |
---|---|
#addin nuget:?package=Cake.CMake
Task("CMake")
.Does(() =>
{
var settings = new CMakeSettings
{
OutputPath = "path/to/build",
SourcePath = "path/to/source"
};
CMake(settings);
});
#addin nuget:?package=Cake.CMake
Task("CMake")
.Does(() =>
{
var settings = new CMakeBuildSettings
{
BinaryPath = "path/to/build"
};
CMakeBuild(settings);
});