Gradle is a great ally in both java and android development. I was looking at the site and realized that it can also manage projects in C ++.
How can I use it to compile a super simple project (hello word)?
Gradle is a great ally in both java and android development. I was looking at the site and realized that it can also manage projects in C ++.
How can I use it to compile a super simple project (hello word)?
// build.gradle
apply plugin: 'cpp'
libraries {
hello {}
}
executables {
main {
binaries.all {
lib libraries.hello.shared
}
}
}