Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for writeResources (0.16 sec)

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

        def "visual studio solution does not reference the components of a project if it does not have visual studio plugin applied"() {
            when:
            app.executable.writeSources(file("exe/src/main"))
            app.library.writeSources(file("lib/src/main"))
            app.library.writeSources(file("other/src/main"))
    
            createDirs("exe", "lib", "other")
            settingsFile << """
                include ':exe', ':lib', ':other'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationIntegrationTest.groovy

        def "sources are compiled and linked with C++ tools"() {
            settingsFile << "rootProject.name = 'app'"
            def app = new CppCompilerDetectingTestApp()
    
            given:
            app.writeSources(file('src/main'))
    
            and:
            buildFile << """
                apply plugin: 'cpp-application'
             """
    
            expect:
            succeeds "assemble"
    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