Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for projectType (0.69 sec)

  1. 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)
  2. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/CppMultiProjectGeneratorTask.groovy

        @Override
        void generateProjectSource(File projectDir, TestProject testProject, Map args) {
            def projectNumber = testProject.subprojectNumber == null ? -1 : testProject.subprojectNumber
            def projectArgs = [projectType: isLastLayer(depInfo.layerSizes, projectNumber) ? 'exe' : 'lib',
                               projectDeps: depInfo.dependencies[projectNumber - 1].collect {
                                   "project${it}"
                               },
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/BuildBuilderGenerator.groovy

         */
        @Input
        final ListProperty<String> args
    
        /**
         * Type of project to generate (cpp, java, swift, etc)
         */
        @Input
        String projectType
    
        /**
         * Number of projects to generate
         */
        @Input
        int projects
    
        /**
         * Number of source files to generate per project
         */
        @Input
        int sourceFiles
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/internal/VisualStudioProjectRegistryTest.groovy

            targetBinary.componentName >> "main"
            targetBinary.visualStudioProjectName >> "mainExe"
            targetBinary.visualStudioConfigurationName >> variant
            targetBinary.projectType >> VisualStudioTargetBinary.ProjectType.EXE
            targetBinary.variantDimensions >> [variant]
            return targetBinary
        }
    
        private FileCollection fileCollection(File... files = []) {
            return Stub(FileCollection) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top