Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for greetingHeader (0.2 sec)

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

            allSkipped()
        }
    
        @ToBeFixedForConfigurationCache
        def "recompiles only those source files affected by a header file change"() {
            given:
            def greetingHeader = file("app/src/main/headers/greeting.hpp")
            greetingHeader << """
                #define PREFIX "hello"
            """
            appOtherSourceFile.text = """
                #include "app.hpp"
                #include "greeting.hpp"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLanguageParallelIntegrationTest.groovy

                buildFile << app.extraConfiguration
    
                app.executable.writeSources(file("src/${name}Main"))
                app.library.writeSources(file("src/${name}Hello"))
                app.greetingsHeader.writeToDir(file("src/${name}Hello"))
                app.greetingsSources*.writeToDir(file("src/${name}Greetings"))
    
                buildFile << """
                    model {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryApiDependenciesIntegrationTest.groovy

            given:
            def app = new ExeWithLibraryUsingLibraryHelloWorldApp()
            app.executable.writeSources(file("src/main"))
            app.library.writeSources(file("src/hello"))
            app.greetingsHeader.writeToDir(file("src/hello"))
            app.greetingsSources*.writeToDir(file("src/greetings"))
    
            and:
            buildFile << """
    model {
        components {
            main(NativeExecutableSpec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelSingleProjectIntegrationTest.groovy

            given:
            def app = new ExeWithLibraryUsingLibraryHelloWorldApp()
            app.executable.writeSources(file("src/main"))
            app.library.writeSources(file("src/hello"))
            app.greetingsHeader.writeToDir(file("src/hello"))
            app.greetingsSources*.writeToDir(file("src/greetings"))
    
            and:
            buildFile << """
    model {
        components {
            main(NativeExecutableSpec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 35.7K bytes
    - Viewed (0)
Back to top