Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getHeaderDirs (0.22 sec)

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

    import org.gradle.api.file.FileCollection;
    
    /**
     * A physical representation of a {@link NativeLibrary} component.
     */
    @Incubating
    public interface NativeLibraryBinary extends NativeBinary {
    
        FileCollection getHeaderDirs();
    
        FileCollection getLinkFiles();
    
        FileCollection getRuntimeFiles();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 992 bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/resolve/DefaultNativeDependencySet.java

        public DefaultNativeDependencySet(NativeLibraryBinary binary) {
            this.binary = binary;
        }
    
        @Override
        public FileCollection getIncludeRoots() {
            return binary.getHeaderDirs();
        }
    
        @Override
        public FileCollection getLinkFiles() {
            return binary.getLinkFiles();
        }
    
        @Override
        public FileCollection getRuntimeFiles() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/AbstractNativeLibraryBinarySpec.java

                    return true;
                }
                if (sourceSet.hasBuildDependencies()) {
                    return true;
                }
            }
            return false;
        }
    
        public FileCollection getHeaderDirs() {
            return getFileCollectionFactory().create(new HeaderFileSet());
        }
    
        protected abstract class LibraryOutputs implements MinimalFileSet, Buildable {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/prebuilt/AbstractPrebuiltLibraryBinary.java

        public Flavor getFlavor() {
            return flavor;
        }
    
        @Override
        public NativePlatform getTargetPlatform() {
            return targetPlatform;
        }
    
        @Override
        public FileCollection getHeaderDirs() {
            return library.getHeaders().getSourceDirectories();
        }
    
        protected FileCollection createFileCollection(File file, String fileCollectionDisplayName, String fileDescription) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/cpp/CompilationDetails.java

        DomainObjectSet<? extends SourceFile> getSources();
    
        /**
         * Returns the header directories for this binary. These are also included in the result of {@link #getUserHeaderSearchPaths()}.
         */
        Set<File> getHeaderDirs();
    
        /**
         * Returns the macro define directives for this binary.
         */
        DomainObjectSet<? extends MacroDirective> getMacroDefines();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. platforms/native/tooling-native/src/main/java/org/gradle/language/cpp/internal/tooling/DefaultCompilationDetails.java

        }
    
        public File getCompileWorkingDir() {
            return workingDir;
        }
    
        public List<DefaultSourceFile> getSources() {
            return sources;
        }
    
        public List<File> getHeaderDirs() {
            return headerDirs;
        }
    
        public List<File> getFrameworkSearchPaths() {
            return Collections.emptyList();
        }
    
        public List<File> getSystemHeaderSearchPaths() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top