Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 178 for targetPlatform (0.32 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/swift/internal/DefaultSwiftBinary.java

        }
    
        @Override
        public TargetMachine getTargetMachine() {
            return targetPlatform.getTargetMachine();
        }
    
        @Override
        public SwiftPlatform getTargetPlatform() {
            return targetPlatform;
        }
    
        public NativePlatform getNativePlatform() {
            return ((DefaultSwiftPlatform) targetPlatform).getNativePlatform();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/build.gradle

        components {
            all {
                targetPlatform "x86"
            }
        }
    
        repositories {
            libs(PrebuiltLibraries) {
                googleTest {
                    headers.srcDir "libs/googleTest/1.7.0/include"
                    binaries.withType(StaticLibraryBinary) {
                        staticLibraryFile = file("libs/googleTest/1.7.0/lib/" + findGoogleTestCoreLibForPlatform(targetPlatform))
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1007 bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/assembler/tasks/Assemble.java

        private final Property<NativePlatform> targetPlatform;
        private final Property<NativeToolChain> toolChain;
        private File objectFileDir;
        private List<String> assemblerArgs;
    
        @Inject
        public Assemble() {
            ObjectFactory objectFactory = getProject().getObjects();
            source = getProject().files();
            includes = getProject().files();
            this.targetPlatform = objectFactory.property(NativePlatform.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/LinkSharedLibrary.java

                    NativePlatformInternal targetPlatform = (NativePlatformInternal) getTargetPlatform().getOrNull();
                    if (toolChain == null || targetPlatform == null) {
                        return null;
                    }
                    PlatformToolProvider toolProvider = toolChain.select(targetPlatform);
                    if (!toolProvider.producesImportLibrary()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/prebuilt/DefaultPrebuiltStaticLibraryBinary.java

        private File staticLibraryFile;
    
        public DefaultPrebuiltStaticLibraryBinary(String name, PrebuiltLibrary library, BuildType buildType, NativePlatform targetPlatform, Flavor flavor, FileCollectionFactory fileCollectionFactory) {
            super(name, library, buildType, targetPlatform, flavor, fileCollectionFactory);
        }
    
        @Override
        public String getDisplayName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/AbstractLinkTask.java

        private Compiler<LinkerSpec> createCompiler() {
            NativePlatformInternal targetPlatform = Cast.cast(NativePlatformInternal.class, this.targetPlatform.get());
            NativeToolChainInternal toolChain = Cast.cast(NativeToolChainInternal.class, getToolChain().get());
            PlatformToolProvider toolProvider = toolChain.select(targetPlatform);
            Class<LinkerSpec> linkerSpecType = (Class<LinkerSpec>) createLinkerSpec().getClass();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  7. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/impl/KtSdkModuleImpl.kt

    import org.jetbrains.kotlin.platform.TargetPlatform
    import java.nio.file.Path
    
    internal class KtSdkModuleImpl(
        override val directRegularDependencies: List<KtModule>,
        override val directDependsOnDependencies: List<KtModule>,
        override val directFriendDependencies: List<KtModule>,
        override val contentScope: GlobalSearchScope,
        override val platform: TargetPlatform,
        override val project: Project,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 15:47:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/impl/KtLibrarySourceModuleImpl.kt

    import org.jetbrains.kotlin.platform.TargetPlatform
    
    internal class KtLibrarySourceModuleImpl(
        override val directRegularDependencies: List<KtModule>,
        override val directDependsOnDependencies: List<KtModule>,
        override val directFriendDependencies: List<KtModule>,
        override val contentScope: GlobalSearchScope,
        override val platform: TargetPlatform,
        override val project: Project,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 15:47:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/prebuilt/groovy/build.gradle

                        def libName = targetPlatform.operatingSystem.windows ? 'util.lib' : 'libutil.a'
                        staticLibraryFile = file("3rd-party-lib/util/build/libs/util/static/${buildType.name}/${libName}")
                    }
                    binaries.withType(SharedLibraryBinary) {
                        def os = targetPlatform.operatingSystem
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/build.gradle

                            file("libs/cunit/2.1-2/lib/" +
                                 findCUnitLibForPlatform(targetPlatform))
                    }
                }
            }
        }
    // tag::terse-example[]
        components {
            operators(NativeLibrarySpec) {
                targetPlatform "x86"
            }
        }
        testSuites {
            operatorsTest(CUnitTestSuiteSpec) {
                testing $.components.operators
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top