Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for projectConfigurations (0.27 sec)

  1. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioFileCustomizationIntegrationTest.groovy

            assert projectFile.sourceFiles == ['../../../build.gradle'] + app.sourceFiles*.withPath("../../../src/main").sort()
            projectFile.projectConfigurations.values().each {
                assert it.buildCommand == "\"../../../${hostGradleWrapperFile.name}\" -p \"../../..\" :installMain${it.name.capitalize()}Executable"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/sourceset/GeneratedSourcesIntegrationTest.groovy

            ] as Set
            projectFile.headerFiles.sort() == [ "build/src/generated/headers/common.h", "build/src/generated/headers/hello.h" ]
            projectFile.projectConfigurations.keySet() == ['debug'] as Set
            with (projectFile.projectConfigurations['debug']) {
                // TODO - should not include the default location
                includePath == "src/main/headers;build/src/generated/headers"
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioIncrementalIntegrationTest.groovy

            then:
            skipped ":appVisualStudioSolution"
            executedAndNotSkipped getComponentTasks("app")
    
            and:
            final projectFile = projectFile("app.vcxproj")
            projectFile.projectConfigurations.values().each {
                assert it.macros == "FOO"
            }
    
            when:
            run "visualStudio"
    
            then:
            skipped ":appVisualStudioSolution"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/main/groovy/org/gradle/ide/visualstudio/tasks/internal/VisualStudioProjectFile.groovy

            }
        }
    
        private Node getConfigurations() {
            return xml.ItemGroup.find({ it.'@Label' == 'ProjectConfigurations' }) as Node
        }
    
        private List<String> toPath(Set<File> files) {
            return files.collect({ toPath(it) })
        }
    
        private String toPath(File it) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/googletest/GoogleTestIntegrationTest.groovy

            projectFile.headerFiles == [
                    "src/hello/headers/common.h",
                    "src/hello/headers/hello.h"
            ]
            projectFile.projectConfigurations.keySet() == ['debug'] as Set
            with (projectFile.projectConfigurations['debug']) {
                includePath == "src/helloTest/headers;src/hello/headers;${prebuiltPath}/googleTest/1.7.0/include"
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/ide/visualstudio/fixtures/ProjectFile.groovy

            this.projectXml = new XmlParser().parse(projectFile)
        }
    
        Map<String, Configuration> getProjectConfigurations() {
            def configs = itemGroup("ProjectConfigurations").collect {
                new Configuration(it.Configuration[0].text(), it.Platform[0].text())
            }
            return configs.collectEntries {
                [it.name, it]
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitIntegrationTest.groovy

                "src/hello/headers/common.h",
                "src/hello/headers/hello.h"
            ]
            projectFile.projectConfigurations.keySet() == ['debug'] as Set
            with(projectFile.projectConfigurations['debug']) {
                includePath == "src/helloTest/headers;build/src/helloTest/cunitLauncher/headers;src/hello/headers;${prebuiltPath}/cunit/2.1-2/include"
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/fixtures/AbstractVisualStudioIntegrationSpec.groovy

    import org.gradle.nativeplatform.fixtures.AbstractInstalledToolChainIntegrationSpec
    
    abstract class AbstractVisualStudioIntegrationSpec extends AbstractInstalledToolChainIntegrationSpec {
        final def projectConfigurations = ['debug', 'release'] as Set
    
        protected static String filePath(String... paths) {
            return filePath(paths as List)
        }
    
        protected static String filePath(Iterable<String> paths) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIvyPublishIntegrationTest.groovy

                        ivy(IvyPublication) {
                            from mainComponent
                        }
                    }
                }
            """
        }
    
        private ProjectConfiguration configureProject(String username, String password, String repositoryName, boolean inlinedCredentials) {
            assert !inlinedCredentials : "Inlined credentials are not supported with the configuration cache"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dependencies/DefaultProjectDependency.java

            if (transitive) {
                Configuration projectConfiguration = findProjectConfiguration();
                for (Dependency dependency : projectConfiguration.getAllDependencies()) {
                    context.add(dependency);
                }
                for (DependencyConstraint dependencyConstraint : projectConfiguration.getAllDependencyConstraints()) {
                    context.add(dependencyConstraint);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 13:59:13 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top