Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for compileReleaseSwift (0.18 sec)

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

    .Swift Application Plugin variant-dependent task graph
    image::swift-application-variant-task-graph.png[]
    
    `compile__Variant__Swift` (e.g. `compileDebugSwift` and `compileReleaseSwift`)  - link:{groovyDslPath}/org.gradle.language.swift.tasks.SwiftCompile.html[SwiftCompile]::
    Depends on: All tasks that contribute source files to the compilation
    ::
    Compiles Swift source files using the selected compiler.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  2. 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)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeMultipleSwiftProjectIntegrationTest.groovy

                .withScheme('Greeter')
                .withConfiguration(DefaultXcodeProject.BUILD_RELEASE)
                .succeeds()
    
            then:
            resultReleaseGreeter.assertTasksExecuted(':compileReleaseSwift', ':linkRelease', ':stripSymbolsRelease', ':_xcode___Greeter_Release')
        }
    
        @ToBeFixedForConfigurationCache
        @Ignore('The project contains no build configurations - it may have been damaged')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/native/building_swift_projects.adoc

    include::sample[dir="snippets/swift/basic/groovy",files="build.gradle[tags=apply-swift-plugin]"]
    ====
    
    By applying either of the Swift plugins, you get a whole host of features:
    
     * `compileDebugSwift` and `compileReleaseSwift` tasks that compiles the Swift source files under _src/main/swift_ for the well-known debug and release build types, respectively.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  5. 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)
Back to top