Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for assembleRelease (0.15 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftLibraryIntegrationTest.groovy

            sharedLibrary("build/lib/main/debug/${lib.moduleName}").assertExists()
    
            when:
            succeeds "assembleRelease"
    
            then:
            result.assertTasksExecuted(":compileReleaseSwift", ":linkRelease", ":extractSymbolsRelease", ":stripSymbolsRelease", ":assembleRelease")
            file("build/modules/main/release/${lib.moduleName}.swiftmodule").assertIsFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 15:17:55 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationIntegrationTest.groovy

                    compileTask.get().compilerArgs.add('-DWITH_FEATURE')
                }
             """
    
            expect:
            succeeds "assembleRelease"
            result.assertTasksExecuted(":compileReleaseSwift", ":linkRelease", ":extractSymbolsRelease", ":stripSymbolsRelease", ":installRelease", ":assembleRelease")
    
            releaseBinary.assertExists()
            releaseBinary.exec().out == app.withFeatureEnabled().expectedOutput
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:43:37 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/cpp_application_plugin.adoc

    ::
    Installs the executable and all of it's runtime dependencies for easy execution.
    
    `assemble__Variant__` (e.g. `assembleDebug` and `assembleRelease`) - Task (lifecycle)::
    Depends on: `link__Variant__`
    ::
    Aggregates tasks that assemble the specific variant of this application.
    
    [[sec:cpp_application_lifecycle_tasks]]
    === Lifecycle Tasks
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/native/swift_application_plugin.adoc

    ::
    Installs the executable and all of it's runtime dependencies for easy execution.
    
    `assemble__Variant__` (e.g. `assembleDebug` and `assembleRelease`) - Task (lifecycle)::
    Depends on: `link__Variant__`
    ::
    Aggregates tasks that assemble the specific variant of this application.
    
    [[sec:swift_application_lifecycle_tasks]]
    === Lifecycle Tasks
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/native/swift_library_plugin.adoc

    Creates static library from compiled object files using selected archiver
    
    `assemble__Variant__` (e.g. `assembleDebug` and `assembleRelease`) - Task (lifecycle)::
    Depends on: `link__Variant__` (shared linkage) or `create__Variant__` (static linkage)
    ::
    Aggregates tasks that assemble the specific variant of this library.
    
    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/native/language-native/src/test/groovy/org/gradle/language/plugins/NativeBasePluginTest.groovy

            when:
            project.components.add(component)
            binaries.realizeNow()
    
            then:
            project.tasks['assembleDebug'] TaskDependencyMatchers.dependsOn('installDebug')
            project.tasks['assembleRelease'] TaskDependencyMatchers.dependsOn('installRelease')
        }
    
        def "adds tasks to assemble a static library"() {
            def toolProvider = Stub(PlatformToolProvider)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/cpp_library_plugin.adoc

    Creates static library from compiled object files using selected archiver
    
    `assemble__Variant__` (e.g. `assembleDebug` and `assembleRelease`) - Task (lifecycle)::
    Depends on: `link__Variant__` (shared linkage) or `create__Variant__` (static linkage)
    ::
    Aggregates tasks that assemble the specific variant of this library.
    
    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