net.sf.loggersoft.cpp-conan
Owner:
Alexander Kornilov
The plugin allow to use Conan package manager.
https://sourceforge.net/p/gradle-cpp/wiki/cpp-conan/
Sources: https://sourceforge.net/p/gradle-cpp/code/ci/default/tree/conan-app/
Version 0.1 (latest)
Created 05 March 2025.
The plugin allow to use Conan package manager.
Add this plugin to your build using the plugins DSL:
plugins {
id("net.sf.loggersoft.cpp-conan") version "0.1"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("net.sf.loggersoft.cpp-conan:net.sf.loggersoft.cpp-conan.gradle.plugin:0.1") }
It can then be applied in the precompiled script plugin:plugins { id("net.sf.loggersoft.cpp-conan") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.sf.loggersoft.cpp-conan:net.sf.loggersoft.cpp-conan.gradle.plugin:0.1") } } apply(plugin = "net.sf.loggersoft.cpp-conan")
- Applying plugins to all subprojects .