Posts by Haysa Rodrigues • 34 points
1 post
-
1
votes1
answer289
viewsA: Build C++ using Gradle
// build.gradle apply plugin: 'cpp' libraries { hello {} } executables { main { binaries.all { lib libraries.hello.shared } } } This example made available here if you want to learn more about Radle…