Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getCompileWorkingDir (0.15 sec)

  1. platforms/native/tooling-native/src/main/java/org/gradle/language/cpp/internal/tooling/DefaultCompilationDetails.java

        }
    
        public LaunchableGradleTask getCompileTask() {
            return compileTask;
        }
    
        public File getCompilerExecutable() {
            return compilerExe;
        }
    
        public File getCompileWorkingDir() {
            return workingDir;
        }
    
        public List<DefaultSourceFile> getSources() {
            return sources;
        }
    
        public List<File> getHeaderDirs() {
            return headerDirs;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/cpp/CompilationDetails.java

         */
        @Nullable
        File getCompilerExecutable();
    
        /**
         * Returns the working directory that the compiler is invoked from when compiling the source of this binary.
         */
        File getCompileWorkingDir();
    
        /**
         * Returns the framework search paths for this binary.
         */
        List<File> getFrameworkSearchPaths();
    
        /**
         * Returns the system search paths for this binary.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top