Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for writeToDir (0.15 sec)

  1. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitIntegrationTest.groovy

        @ToBeFixedForConfigurationCache
        def "variant-dependent sources are included in test binary"() {
            given:
            app.library.headerFiles*.writeToDir(file("src/hello"))
            app.cunitTests.writeSources(file("src/helloTest"))
            app.library.sourceFiles*.writeToDir(file("src/variant"))
    
            when:
            buildFile << """
    model {
        components {
            hello(NativeLibrarySpec) { l ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/c/CLanguageIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "can manually define C source sets"() {
            given:
            helloWorldApp.library.headerFiles.each { it.writeToDir(file("src/shared")) }
    
            file("src/main/c/main.c") << helloWorldApp.mainSource.content
            file("src/main/c2/hello.c") << helloWorldApp.librarySources[0].content
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top