Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for getCompileTask (0.18 sec)

  1. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/AbstractCppBinaryVisualStudioTargetBinary.java

            this.component = component;
            this.projectLayout = projectLayout;
        }
    
        @Override
        public LanguageStandard getLanguageStandard() {
            return LanguageStandard.from(getBinary().getCompileTask().get().getCompilerArgs().get());
        }
    
        @Internal
        abstract CppBinary getBinary();
    
        @Override
        public String getProjectPath() {
            return projectPath;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/cpp/CompilationDetails.java

         */
        Task getCompileTask();
    
        /**
         * Returns the compiler executable that is used to compile this binary.
         *
         * @return The compiler executable or {@code null} if the compiler for this binary is not available.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/swift/SwiftBinary.java

         */
        FileCollection getRuntimeLibraries();
    
        /**
         * Returns the compile task for this binary.
         *
         * @since 4.5
         */
        Provider<SwiftCompile> getCompileTask();
    
        /**
         * Returns the module file for this binary.
         *
         * @since 4.6
         */
        Provider<RegularFile> getModuleFile();
    
        /**
         * Returns the target platform for this component.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. platforms/native/tooling-native/src/main/java/org/gradle/language/cpp/internal/tooling/DefaultCompilationDetails.java

            this.userHeaderDirs = userHeaderDirs;
            this.macroDefines = macroDefines;
            this.additionalArgs = additionalArgs;
        }
    
        public LaunchableGradleTask getCompileTask() {
            return compileTask;
        }
    
        public File getCompilerExecutable() {
            return compilerExe;
        }
    
        public File getCompileWorkingDir() {
            return workingDir;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/cpp/CppBinary.java

         *
         * @since 4.5
         */
        CppPlatform getTargetPlatform();
    
        /**
         * Returns the compile task for this binary.
         *
         * @since 4.5
         */
        Provider<CppCompile> getCompileTask();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/main/java/org/gradle/language/swift/plugins/SwiftBasePlugin.java

                        task.getCompilerArgs().add("-parse-as-library");
                    }
                });
    
                binary.getModuleFile().set(compile.flatMap(task -> task.getModuleFile()));
                binary.getCompileTask().set(compile);
                binary.getObjectsDir().set(compile.flatMap(task -> task.getObjectFileDir()));
            });
    
            project.getComponents().withType(ProductionSwiftComponent.class, component -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/cpp/plugins/CppBasePlugin.java

                        task.setPositionIndependentCode(true);
                    }
                });
    
                binary.getObjectsDir().set(compile.flatMap(task -> task.getObjectFileDir()));
                binary.getCompileTask().set(compile);
            });
    
            project.getComponents().withType(ProductionCppComponent.class, component -> {
                project.afterEvaluate(p -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/cpp/internal/DefaultCppBinary.java

        }
    
        @Override
        public NativeToolChainInternal getToolChain() {
            return toolChain;
        }
    
        @Override
        public Property<CppCompile> getCompileTask() {
            return compileTaskProperty;
        }
    
        public PlatformToolProvider getPlatformToolProvider() {
            return platformToolProvider;
        }
    
        public NativeVariantIdentity getIdentity() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  9. platforms/native/tooling-native/src/main/java/org/gradle/language/cpp/internal/tooling/CppModelBuilder.java

                DefaultCppBinary cppBinary = (DefaultCppBinary) binary;
                PlatformToolProvider platformToolProvider = cppBinary.getPlatformToolProvider();
                CppCompile compileTask = binary.getCompileTask().get();
                List<DefaultSourceFile> sourceFiles = sourceFiles(namingSchemeFactory, platformToolProvider, compileTask.getObjectFileDir().get().getAsFile(), binary.getCppSource().getFiles());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/main/java/org/gradle/language/swift/internal/DefaultSwiftBinary.java

            return moduleFile;
        }
    
        public Configuration getImportPathConfiguration() {
            return importPathConfiguration;
        }
    
        @Override
        public Property<SwiftCompile> getCompileTask() {
            return compileTaskProperty;
        }
    
        @Override
        public TargetMachine getTargetMachine() {
            return targetPlatform.getTargetMachine();
        }
    
        @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)
Back to top