From 140a014615c7d1447f2a9d5c75096c672abf4a53 Mon Sep 17 00:00:00 2001 From: Marco Freudenberger Date: Wed, 3 Apr 2019 08:39:11 +0200 Subject: [PATCH 1/3] Update README.md --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 456c41c..80290b8 100644 --- a/README.md +++ b/README.md @@ -8,27 +8,27 @@ Plugin applies the base plugin automatically, and hooks msbuild output folders i * CMake ## To apply the plugin: - // Starting from gradle 2.1 + +**plugins DSL** + plugins { id 'net.freudasoft.gradle-cmake-plugin' version '0.0.1' } -or +**Legacy plugin application** buildscript { repositories { maven { - url = uri('../gradle-cmake-plugin/build/repo'); + url "https://plugins.gradle.org/m2/" } } dependencies { - classpath 'net.freudasoft:gradle-cmake-plugin:0.0.1' - } - repositories { - mavenCentral() + classpath "net.freudasoft:gradle-cmake-plugin:0.0.1" } } - apply plugin: 'net.freudasoft.gradle-cmake-plugin' + + apply plugin: "net.freudasoft.gradle-cmake-plugin" and configure by: From 032c0ec7428840083cb75a8f94f503ad79fd0bab Mon Sep 17 00:00:00 2001 From: Marco Freudenberger Date: Wed, 3 Apr 2019 08:46:11 +0200 Subject: [PATCH 2/3] Update README.md --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 80290b8..b506ce8 100644 --- a/README.md +++ b/README.md @@ -101,7 +101,8 @@ If you want to get the output of cmake, add -i to your gradle call, for example: ## Custom tasks -You can create custom tasks like so: +~~You can create custom tasks like so:~~ +**not yet implemented** import net.freudasoft.CMakePlugin @@ -110,6 +111,8 @@ You can create custom tasks like so: // Other properties } + + ## License All these plugins are licensed under the Apache License, Version 2.0 with no warranty (expressed or implied) for any purpose. From 6d71bcd6faa00d9f232f5d05e7d9623268ea2629 Mon Sep 17 00:00:00 2001 From: Marco Freudenberger Date: Wed, 3 Apr 2019 08:48:43 +0200 Subject: [PATCH 3/3] Update README.md --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b506ce8..e2b1e21 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,10 @@ # gradle-cmake-plugin This plugin allows to configure and build using CMake. -Plugin applies the base plugin automatically, and hooks msbuild output folders into the clean task process. Below tasks are provided by the plugin: +This plugin should work as documented, but is in an early development phase. +If you have requests or find bugs, please create an issue. + +Plugin applies the base plugin automatically. Below tasks are provided by the plugin: ## Prerequisites