Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getCompilerDefines (0.27 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)
  4. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/NativeSpecVisualStudioTargetBinary.java

            } else {
                return binary.getPrimaryOutput();
            }
        }
    
        @Override
        public List<String> getCompilerDefines() {
            List<String> defines = new ArrayList<String>();
            defines.addAll(getDefines("cCompiler"));
            defines.addAll(getDefines("cppCompiler"));
            defines.addAll(getDefines("rcCompiler"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11.4K bytes
    - Viewed (0)
Back to top