Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for configureToolChainSupport (0.23 sec)

  1. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/cpp/AbstractCppComponentIntegrationTest.groovy

            componentUnderTest.writeToProject(testDirectory)
    
            and:
            buildFile << configureTargetMachines("machines.${currentHostOperatingSystemFamilyDsl}.architecture('foo')")
            buildFile << configureToolChainSupport('foo')
    
            expect:
            fails taskNameToAssembleDevelopmentBinary
            failure.assertHasCause("No tool chain is available to build C++")
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/AbstractXcodeCppProjectIntegrationTest.groovy

            useXcodebuildTool()
    
            given:
            makeSingleProject()
            buildFile << configureTargetMachines("machines.${currentHostOperatingSystemFamilyDsl}.architecture('foo')")
            buildFile << configureToolChainSupport('foo')
    
            componentUnderTest.writeToProject(testDirectory)
            succeeds("xcode")
    
            when:
            def result = xcodebuild
                .withProject(rootXcodeProject)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/AbstractVisualStudioProjectIntegrationTest.groovy

                ${configureToolChainSupport('foo')}
            """
    
            expect:
            succeeds "help"
        }
    
        @ToBeFixedForConfigurationCache
        def "can create visual studio project for unbuildable component"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationIntegrationTest.groovy

                    apply plugin: 'cpp-library'
                    library {
                        targetMachines = [machines.${currentHostOperatingSystemFamilyDsl}.architecture('foo')]
                    }
                    ${configureToolChainSupport('foo')}
                }
            """
            app.greeter.writeToProject(file("greeter"))
            app.main.writeToProject(file("app"))
    
            expect:
            fails ":app:assemble"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 19:11:01 UTC 2024
    - 42.5K bytes
    - Viewed (0)
Back to top