Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for nativeLinkDebug (0.25 sec)

  1. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/internal/DefaultSwiftBinaryTest.groovy

        DefaultSwiftBinary binary
    
        def setup() {
            _ * configurations.resolvableDependencyScopeUnlocked("swiftCompileDebug") >> compile
            _ * configurations.resolvableDependencyScopeUnlocked("nativeLinkDebug") >> link
            _ * configurations.migratingUnlocked('nativeRuntimeDebug', ConfigurationRolesForMigration.RESOLVABLE_DEPENDENCY_SCOPE_TO_RESOLVABLE) >> runtime
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/internal/DefaultCppBinaryTest.groovy

        DefaultCppBinary binary
    
        def setup() {
            def componentHeaders = Stub(FileCollection)
            _ * configurations.create("cppCompileDebug") >> compile
            _ * configurations.create("nativeLinkDebug") >> link
            _ * configurations.create("nativeRuntimeDebug") >> runtime
            _ * componentHeaders.plus(_) >> headerDirs
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/swift_application_plugin.adoc

    Used for compiling the application.
    This configuration contains the compile include roots of the application and is therefore used when invoking the Swift compiler to compile it.
    
    `nativeLink__Variant__` (e.g. `nativeLinkDebug` and `nativeLinkRelease`) extends `main__Variant__Implementation`::
    Used for linking the application.
    This configuration contains the libraries of the application and is therefore used when invoking the Swift linker to link it.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/native/cpp_application_plugin.adoc

    Used for compiling the application.
    This configuration contains the compile include roots of the application and is therefore used when invoking the {cpp} compiler to compile it.
    
    `nativeLink__Variant__` (e.g. `nativeLinkDebug` and `nativeLinkRelease`) extends `main__Variant__Implementation`::
    Used for linking the application.
    This configuration contains the libraries of the application and is therefore used when invoking the {cpp} linker to link it.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/native/swift_library_plugin.adoc

    Used for compiling the library.
    This configuration contains the compile include roots of the library and is therefore used when invoking the Swift compiler to compile it.
    
    `nativeLink__Variant__` (e.g. `nativeLinkDebug` and `nativeLinkRelease`) extends `main__Variant__Implementation`::
    Used for linking the library the shared library only.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/cpp_library_plugin.adoc

    Used for compiling the library.
    This configuration contains the compile include roots of the library and is therefore used when invoking the {cpp} compiler to compile it.
    
    `nativeLink__Variant__` (e.g. `nativeLinkDebug` and `nativeLinkRelease`) extends `main__Variant__Implementation`::
    Used for linking the library the shared library only.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.2K bytes
    - Viewed (0)
Back to top