Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getCompilerDefines (0.25 sec)

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

         */
        @Internal
        File getOutputFile();
    
        /**
         * Returns the compiler definitions that should be used with this binary
         */
        @Input
        List<String> getCompilerDefines();
    
        /**
         * Returns the language standard of the source for this binary.
         */
        @Input
        LanguageStandard getLanguageStandard();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/AbstractCppBinaryVisualStudioTargetBinary.java

            return taskPath("clean");
        }
    
        @Override
        public boolean isDebuggable() {
            return getBinary().isDebuggable();
        }
    
        @Override
        public List<String> getCompilerDefines() {
            return  new MacroArgsConverter().transform(getBinary().getCompileTask().get().getMacros());
        }
    
        @Override
        public Set<File> getIncludePaths() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/tasks/internal/VisualStudioProjectFileTest.groovy

                getTargetBinary() >> Stub(VisualStudioTargetBinary) {
                    getBuildTaskPath() >> "${configName}Build"
                    getCleanTaskPath() >> "${configName}Clean"
                    getCompilerDefines() >> defines
                    getIncludePaths() >> includes.collect { file(it) }
                    getOutputFile() >> new File("out")
                }
                isBuildable() >> true
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top