Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getSourceType (0.13 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalBuildIntegrationTest.groovy

            return true
        }
    
        abstract IncrementalHelloWorldApp getHelloWorldApp()
    
        String getCompilerTool() {
            "${app.sourceType}Compiler"
        }
    
        String getSourceType() {
            GUtil.toCamelCase(app.sourceType)
        }
    
        def "setup"() {
            app = getHelloWorldApp()
            mainCompileTask = ":compileMainExecutableMain${sourceType}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalCompileIntegrationTest.groovy

        TestFile otherHeaderFile
        List<TestFile> otherSourceFiles = []
        TestFile objectFileDir
        CompilationOutputsFixture outputs
    
        abstract IncrementalHelloWorldApp getHelloWorldApp()
    
        String getSourceType() {
            GUtil.toCamelCase(app.sourceType)
        }
    
        def "setup"() {
            app = getHelloWorldApp()
            compileTask = ":compileMainExecutableMain${sourceType}"
    
            buildFile << app.pluginScript
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.5K bytes
    - Viewed (0)
Back to top