Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for cppCompile (0.3 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/cpp_unit_test_plugin.adoc

    [horizontal]
    link:{groovyDslPath}/org.gradle.language.cpp.tasks.CppCompile.html#org.gradle.language.cpp.tasks.CppCompile:compilerArgs[compilerArgs]:: []
    
    link:{groovyDslPath}/org.gradle.language.cpp.tasks.CppCompile.html#org.gradle.language.cpp.tasks.CppCompile:debuggable[debuggable]:: `true`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/native/cpp_application_plugin.adoc

    [horizontal]
    link:{groovyDslPath}/org.gradle.language.cpp.tasks.CppCompile.html#org.gradle.language.cpp.tasks.CppCompile:compilerArgs[compilerArgs]:: []
    
    link:{groovyDslPath}/org.gradle.language.cpp.tasks.CppCompile.html#org.gradle.language.cpp.tasks.CppCompile:debuggable[debuggable]:: `true`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppLibraryPluginTest.groovy

            project.evaluate()
    
            then:
            project.tasks.withType(CppCompile)*.name == ['compileDebugCpp', 'compileReleaseCpp']
            project.tasks.withType(LinkSharedLibrary).empty
    
            and:
            def compileDebug = project.tasks.compileDebugCpp
            compileDebug instanceof CppCompile
            compileDebug.source.files == [src] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/native/cpp_library_plugin.adoc

    [horizontal]
    link:{groovyDslPath}/org.gradle.language.cpp.tasks.CppCompile.html#org.gradle.language.cpp.tasks.CppCompile:compilerArgs[compilerArgs]:: []
    
    link:{groovyDslPath}/org.gradle.language.cpp.tasks.CppCompile.html#org.gradle.language.cpp.tasks.CppCompile:debuggable[debuggable]:: `true`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/native/building_cpp_projects.adoc

    We recommend that you follow these conventions wherever possible, but you don’t have to.
    
    There are several options for customization, as you’ll see next.
    
    NOTE: All link:{groovyDslPath}/org.gradle.language.cpp.tasks.CppCompile.html[CppCompile] tasks are incremental and cacheable.
    
    [[sec:cpp_supported_tool_chain]]
    === Supported tool chain
    
    Gradle offers the ability to execute the same build using different tool chains.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryConfigurationIntegrationTest.groovy

    model {
        components {
            main(NativeExecutableSpec) {
                binaries.all {
                    if (toolChain in VisualCpp) {
                        cppCompiler.args '/Zi'
                        linker.args '/DEBUG'
                    } else {
                        cppCompiler.args '-g'
                    }
                }
            }
        }
    }
    """
    
            and:
            file("src/main/cpp/helloworld.cpp") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppIncrementalBuildIntegrationTest.groovy

                int main () {
                  std::cout << MESSAGE;
                  return 0;
                }
            """
    
            buildFile << """
                project(':app') {
                    tasks.withType(CppCompile) {
                        macros.put('MACRO','${macro}')
                    }
                }
            """
    
            then:
            succeeds installApp
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

        `org.gradle.language.scala.tasks.PlatformScalaCompile` (removed),
        link:{groovyDslPath}/org.gradle.api.tasks.scala.ScalaDoc.html[ScalaDoc]
    * Native toolchain:
        link:{javadocPath}/org/gradle/language/cpp/tasks/CppCompile.html[CppCompile],
        link:{javadocPath}/org/gradle/language/c/tasks/CCompile.html[CCompile],
        link:{javadocPath}/org/gradle/language/swift/tasks/SwiftCompile.html[SwiftCompile]
    * Testing:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/dsl/dsl.xml

            <para>Tasks used to build native binaries.</para>
            <table>
                <title>Native component task types</title>
                <tr>
                    <td>org.gradle.language.cpp.tasks.CppCompile</td>
                </tr>
                <tr>
                    <td>org.gradle.language.swift.tasks.SwiftCompile</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    Passing additional compiler arguments now follow the same pattern as the `CppCompile` and other tasks.
    
    ==== Copied configuration no longer shares a list of `beforeResolve` actions with original
    
    The list of `beforeResolve` actions are no longer shared between a copied configuration and the original.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
Back to top