Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getCompileIncludePath (0.71 sec)

  1. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/cpp/internal/DefaultCppTestExecutable.java

        public Property<RunTestExecutable> getRunTask() {
            return runTask;
        }
    
        @Override
        public FileCollection getCompileIncludePath() {
            // TODO: This should be modeled differently, perhaps as a dependency on the implementation configuration
            return super.getCompileIncludePath().plus(getProjectLayout().files(new Callable<FileCollection>() {
                @Override
                public FileCollection call() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/cpp/CppBinary.java

        FileCollection getCppSource();
    
        /**
         * Returns the header directories to use to compile this binary. Includes the header directories of this binary plus those of its dependencies.
         */
        FileCollection getCompileIncludePath();
    
        /**
         * Returns the link libraries to use to link this binary. Includes the link libraries of the component's dependencies.
         */
        FileCollection getLinkLibraries();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/AbstractCppBinaryVisualStudioTargetBinary.java

            return  new MacroArgsConverter().transform(getBinary().getCompileTask().get().getMacros());
        }
    
        @Override
        public Set<File> getIncludePaths() {
            return getBinary().getCompileIncludePath().getFiles();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/java/org/gradle/language/cpp/plugins/CppBasePlugin.java

                    final Callable<List<File>> systemIncludes = () -> binary.getPlatformToolProvider().getSystemLibraries(ToolType.CPP_COMPILER).getIncludeDirs();
    
                    task.includes(binary.getCompileIncludePath());
                    task.getSystemIncludes().from(systemIncludes);
                    task.source(binary.getCppSource());
                    if (binary.isDebuggable()) {
                        task.setDebuggable(true);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/cpp/internal/DefaultCppBinary.java

            return identity.isOptimized();
        }
    
        @Override
        public FileCollection getCppSource() {
            return sourceFiles;
        }
    
        @Override
        public FileCollection getCompileIncludePath() {
            return includePath;
        }
    
        @Override
        public FileCollection getLinkLibraries() {
            return linkLibraries;
        }
    
        public Configuration getLinkConfiguration() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/plugins/XcodePlugin.java

                            }
    
                            if (cppBinary == component.getDevelopmentBinary().get()) {
                                target.getHeaderSearchPaths().from(component.getDevelopmentBinary().get().getCompileIncludePath());
                                target.getTaskDependencies().add(filterArtifactsFromImplicitBuilds(((DefaultCppBinary) component.getDevelopmentBinary().get()).getIncludePathConfiguration()).getBuildDependencies());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 24.4K bytes
    - Viewed (0)
Back to top