gradle-native
gradle-native copied to clipboard
The home of Gradle's support for natively compiled languages
@gblikas commented on [Fri Apr 13 2018](https://github.com/gradle/gradle/issues/5038) ### Expected Behavior A successful execution of `C:/Gradle/gradle-4.6/samples/native-binaries/cpp` on Windows 10 with Visual Studio 2017, and the Desktop Development With C++ properly installed....
### Description I have been working on android project over Android Studio last week. After some update, I don't remember which one, I start having issues with build&run projects and...
I'm trying to build and run a sample Kotlin Project in Android Studio Chipmunk  But I receive an issue when gradle attempts to build the project. ### Current Behavior...
### Current Behavior Exception at second execution when configuration cache is enabled. ``` Configuration cache is an incubating feature. Reusing configuration cache. FAILURE: Build failed with an exception. * What...
I am trying to migrate my project from maven, but I can not access the custom company repository. Gradle connects to the central repository by default, and disregards both my...
The use-case we have for this is a (JNI) shared library where different source files use different compiler options. This is supported in the old software model by declaring multiple...
### Expected Behavior Consider a trivial native project: ``` plugins { id 'cpp' } model { components { hello(NativeExecutableSpec) { targetPlatform "osx_x86-64" targetPlatform "osx_aarch64" sources { cpp { source {...
Many build systems today are able to read a compile_commands.json file in order to provide intellisense and formatting services. Gradle should have a task to generate this file for native...
### Expected Behavior In gradles github repo for c, c++, swift samples of modern build automation for native languages with Gradle ([Gardle/Native-Samples](https://github.com/gradle/native-samples)) there is a project in the cpp folder...
The older c and cpp plugins could be configured with custom tool chains to support building for linux-arm on linux x86_64. The new preferred cpp-library needs this ability. ### Expected...