Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 178 for targetPlatform (0.47 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/CreateStaticLibrary.java

        private Compiler<StaticLibraryArchiverSpec> createCompiler() {
            NativePlatformInternal targetPlatform = Cast.cast(NativePlatformInternal.class, this.targetPlatform.get());
            NativeToolChainInternal toolChain = Cast.cast(NativeToolChainInternal.class, getToolChain().get());
            PlatformToolProvider toolProvider = toolChain.select(targetPlatform);
            return toolProvider.newCompiler(StaticLibraryArchiverSpec.class);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/main/java/org/gradle/platform/base/PlatformAwareComponentSpec.java

    @Incubating @HasInternalProtocol
    public interface PlatformAwareComponentSpec extends VariantComponentSpec {
        /**
         * Specifies a platform that this component should be built be for.
         */
        void targetPlatform(String targetPlatform);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/AbstractNativeBinarySpec.java

            this.toolChain = toolChain;
        }
    
        @Override
        public NativePlatform getTargetPlatform() {
            return targetPlatform;
        }
    
        @Override
        public void setTargetPlatform(NativePlatform targetPlatform) {
            this.targetPlatform = targetPlatform;
        }
    
        @Override
        public BuildType getBuildType() {
            return buildType;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/xctest/internal/DefaultSwiftXCTestSuiteTest.groovy

        def "can add a test executable"() {
            def targetPlatform = Stub(SwiftPlatform)
            def toolChain = Stub(NativeToolChainInternal)
            def platformToolProvider = Stub(PlatformToolProvider)
    
            expect:
            def exe = testSuite.addExecutable(identity, targetPlatform, toolChain, platformToolProvider)
            exe.name == 'testExecutable'
            exe.targetPlatform == targetPlatform
            exe.toolChain == toolChain
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents/build.gradle

    apply plugin: 'google-test'
    
    model {
        // google test libs are only built for 32-bit
        platforms {
            x86 {
                architecture "x86"
            }
        }
        components {
            all {
                targetPlatform "x86"
            }
        }
        components {
    <%
    components.each { component ->
        out.println """
            ${component.name}(${component.type}) {
                binaries.all {"""
        component.deps.each { dep ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/internal/DefaultSwiftApplicationTest.groovy

        }
    
        def "can create executable binary"() {
            def targetPlatform = Stub(SwiftPlatform)
            def toolChain = Stub(NativeToolChainInternal)
            def platformToolProvider = Stub(PlatformToolProvider)
    
            expect:
            def binary = app.addExecutable(identity, true, targetPlatform, toolChain, platformToolProvider)
            binary.name == "mainDebug"
            binary.debuggable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/impl/KtModuleWithPlatform.kt

     */
    
    package org.jetbrains.kotlin.analysis.project.structure.impl
    
    import org.jetbrains.kotlin.platform.TargetPlatform
    
    internal interface KtModuleWithPlatform {
        val platform: TargetPlatform
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 15:47:25 UTC 2024
    - 402 bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/InstallExecutable.java

     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class InstallExecutable extends DefaultTask {
        private final Property<NativePlatform> targetPlatform;
        private final Property<NativeToolChain> toolChain;
        private final DirectoryProperty installDirectory;
        private final RegularFileProperty executable;
        private final RegularFileProperty installedExecutable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/main/java/org/gradle/language/swift/internal/DefaultSwiftLibrary.java

            SwiftStaticLibrary result = objectFactory.newInstance(DefaultSwiftStaticLibrary.class, getNames().append(identity.getName()), getModule(), testable, getSwiftSource(), getImplementationDependencies(), targetPlatform, toolChain, platformToolProvider, identity);
            getBinaries().add(result);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/main/java/org/gradle/language/cpp/internal/DefaultCppLibrary.java

            DefaultCppSharedLibrary result = objectFactory.newInstance(DefaultCppSharedLibrary.class, getNames().append(identity.getName()), getBaseName(), getCppSource(), getAllHeaderDirs(), getImplementationDependencies(), targetPlatform, toolChain, platformToolProvider, identity);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 04:34:06 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top