Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for projectType (0.33 sec)

  1. 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)
  2. 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)
  3. 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)
  4. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

        dependsOn installBuildBuilder
    }
    
    performanceTest.registerTestProject("mediumSwiftMulti", BuildBuilderGenerator) {
        projectType = "swift"
        projects = 100
        sourceFiles = 4
        description = "Generates a ${projectType} build using build-builder (${projects} projects, ${sourceFiles} files)"
        doLast {
            def projectDirectory = generatedDir.get().asFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/EclipseModelBuilderTest.groovy

            then:
            eclipseModel.javaSourceSettings == null
        }
    
        def "default #type language level are set for #projectType projects if compatibility setting not specified"() {
            given:
            def modelBuilder = createEclipseModelBuilder()
            project.plugins.apply(pluginType)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.ide.visualstudio.internal.VisualStudioTargetBinary$ProjectType> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (VisualStudioTargetBinary.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top