Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for projectType (0.27 sec)

  1. platforms/ide/ide-native/src/main/groovy/org/gradle/ide/visualstudio/plugins/VisualStudioPlugin.java

                        VisualStudioTargetBinary.ProjectType projectType = VisualStudioTargetBinary.ProjectType.DLL;
                        if (Linkage.STATIC.equals(linkage)) {
                            projectType = VisualStudioTargetBinary.ProjectType.LIB;
                        }
                        DefaultVisualStudioProject vsProject = extension.getProjectRegistry().createProject(project.getName() + projectType.getSuffix(), cppLibrary.getName());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/internal/VisualStudioProjectMapperTest.groovy

            targetBinary.componentName >> values.get("componentName", "exeName")
            targetBinary.variantDimensions >> values.get("variantDimensions", ['buildTypeOne'])
            targetBinary.projectType >> values.get("projectType", EXE)
            return targetBinary
        }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. pkg/volume/util/fsquota/project.go

    		i, err := strconv.Atoi(match[2])
    		if err == nil {
    			return projectType{true, common.QuotaID(i), match[1], l}
    		}
    	}
    	return projectType{true, common.BadQuotaID, "", l}
    }
    
    func parseProjFile(f *os.File, parser func(l string) projectType) []projectType {
    	var answer []projectType
    	scanner := bufio.NewScanner(f)
    	for scanner.Scan() {
    		answer = append(answer, parser(scanner.Text()))
    	}
    	return answer
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/internal/NativeSpecVisualStudioTargetBinaryTest.groovy

    import static org.gradle.ide.visualstudio.internal.VisualStudioTargetBinary.ProjectType.DLL
    import static org.gradle.ide.visualstudio.internal.VisualStudioTargetBinary.ProjectType.EXE
    import static org.gradle.ide.visualstudio.internal.VisualStudioTargetBinary.ProjectType.LIB
    import static org.gradle.ide.visualstudio.internal.VisualStudioTargetBinary.ProjectType.NONE
    
    @UsesNativeServices
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/CppApplicationVisualStudioTargetBinary.java

            return projectName;
        }
    
        @Override
        CppBinary getBinary() {
            return binary;
        }
    
        @Override
        public ProjectType getProjectType() {
            return ProjectType.EXE;
        }
    
        @Override
        public boolean isExecutable() {
            return true;
        }
    
        @Override
        public String getBuildTaskPath() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/NativeSpecVisualStudioTargetBinary.java

        }
    
        @Override
        public ProjectType getProjectType() {
            return binary instanceof SharedLibraryBinarySpec ? ProjectType.DLL
                : binary instanceof StaticLibraryBinarySpec ? ProjectType.LIB
                : binary instanceof NativeExecutableBinarySpec ? ProjectType.EXE
                : binary instanceof NativeTestSuiteBinarySpec ? ProjectType.EXE
                : ProjectType.NONE;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/CppSharedLibraryVisualStudioTargetBinary.java

            this.binary = binary;
        }
    
        @Override
        CppBinary getBinary() {
            return binary;
        }
    
        @Override
        public ProjectType getProjectType() {
            return ProjectType.DLL;
        }
    
        @Override
        public boolean isExecutable() {
            return false;
        }
    
        @Override
        public String getBuildTaskPath() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/CppStaticLibraryVisualStudioTargetBinary.java

            this.binary = binary;
        }
    
        @Override
        CppBinary getBinary() {
            return binary;
        }
    
        @Override
        public ProjectType getProjectType() {
            return ProjectType.LIB;
        }
    
        @Override
        public boolean isExecutable() {
            return false;
        }
    
        @Override
        public String getBuildTaskPath() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. testing/performance/src/templates/cpp-project/build.gradle

    <% if (projectType == 'exe') { %>
    // TODO: Remove this once we bump the minimum version of the test
    try {
        apply plugin: 'cpp-application'
    } catch (Exception e) {
        apply plugin: 'cpp-executable'
    }
    <% } else { %>
    apply plugin: 'cpp-library'
    <% } %>
    
    <% if (projectDeps.size() > 0) { %>
    dependencies {
        <% projectDeps.each() { %>
        implementation project(":${it}")
        <% } %>
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 396 bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/VisualStudioTargetBinary.java

        /**
         * Returns the include paths that should be used with this binary
         */
        @Internal
        Set<File> getIncludePaths();
    
        enum ProjectType {
            EXE("Exe"), LIB("Lib"), DLL("Dll"), NONE("");
    
            private final String suffix;
    
            ProjectType(String suffix) {
                this.suffix = suffix;
            }
    
            public String getSuffix() {
                return suffix;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top