Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for helloStaticLibrary (0.42 sec)

  1. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeDependentComponentsIntegrationSpec.groovy

                case 'assembleDependentsHelloStaticLibrary':
                    return [':helloStaticLibrary']
                case 'assembleDependentsHelloSharedLibrary':
                    return [':helloSharedLibrary', ':mainExecutable']
                case 'assembleDependentsHello':
                    return [':helloStaticLibrary', ':helloSharedLibrary', ':mainExecutable']
                case 'assembleDependentsGreetingsStaticLibrary':
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/NativeComponentReportOutputNormalizerTest.groovy

            tool chain: Tool chain 'clang' (Clang)
            shared library file: build/libs/hello/shared/libhello.dylib
        Static library 'hello:staticLibrary'
            build using task: :helloStaticLibrary
            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform 'current'
            tool chain: Tool chain 'clang' (Clang)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitDependentComponentsIntegrationSpec.groovy

            given:
            useConventionalSourceLocations()
            useStandardConfig()
    
            when:
            succeeds 'buildDependentsHello'
    
            then:
            executed ':helloSharedLibrary', ':helloStaticLibrary', ':helloTestCUnitExe', ':runHelloTestCUnitExe'
        }
    
        @ToBeFixedForConfigurationCache
        def "buildDependentsHelloSharedLibrary assemble and check hello shared library"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalBuildIntegrationTest.groovy

            given:
            run "mainExecutable", "helloStaticLibrary"
    
            def executable = executable("build/exe/main/main")
            def snapshot = executable.snapshot()
    
            when:
            buildFile.text = buildFile.text.replace("lib library: 'hello'", "lib library: 'hello', linkage: 'static'")
            run "mainExecutable"
    
            then:
            skipped ":helloStaticLibrary"
            skipped mainCompileTask
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  5. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/googletest/GoogleTestDependentComponentsIntegrationSpec.groovy

            given:
            useConventionalSourceLocations()
            useStandardConfig()
    
            when:
            succeeds 'buildDependentsHello'
    
            then:
            executed ':helloSharedLibrary', ':helloStaticLibrary', ':helloTestGoogleTestExe', ':runHelloTestGoogleTestExe'
        }
    
        @ToBeFixedForConfigurationCache
        def "buildDependentsHelloSharedLibrary assemble and check hello shared library"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/CommonToolChainIntegrationTest.groovy

                }
            }
            hello(NativeLibrarySpec)
        }
    }
    """
            app.executable.writeSources(file("src/main"))
            app.library.writeSources(file("src/hello"))
            succeeds 'helloStaticLibrary'
    
            when:
            succeeds 'mainExe'
    
            then:
            executable('build/exe/main/main').exec().out == app.englishOutput
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/cpp/tests/nativeComponentReport.out

            tool chain: Tool chain 'clang' (Clang)
            shared library file: build/libs/hello/shared/libhello.dylib
        Static library 'hello:staticLibrary'
            build using task: :helloStaticLibrary
            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform 'current'
            tool chain: Tool chain 'clang' (Clang)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/language/nativeplatform/NativeLanguageSamplesIntegrationTest.groovy

            given:
            sample customLayout
    
            when:
            run "installMainExecutable"
    
            then:
            executedAndNotSkipped ":compileHelloStaticLibraryHelloC", ":createHelloStaticLibrary", ":helloStaticLibrary",
                                  ":compileMainExecutableMainCpp", ":linkMainExecutable", ":mainExecutable"
    
            and:
            installation(customLayout.dir.file("build/install/main")).exec().out == "Hello world!"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryConfigurationIntegrationTest.groovy

                    staticLibraryFile = modPath(staticLibraryFile)
                }
            }
        }
    }
    """
    
            when:
            succeeds "mainExecutable", "helloSharedLibrary", "helloStaticLibrary"
    
            then:
            def modPath = { TestFile file -> new TestFile("${file.parentFile}/new_output/_${file.name}") }
            modPath(executable("build/exe/main/main").file).assertExists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.1K bytes
    - Viewed (0)
Back to top