Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for helloSharedLibrary (0.27 sec)

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

                    return [':helloSharedLibrary', ':mainExecutable']
                case 'assembleDependentsHello':
                    return [':helloStaticLibrary', ':helloSharedLibrary', ':mainExecutable']
                case 'assembleDependentsGreetingsStaticLibrary':
                    return [':greetingsStaticLibrary', ':helloStaticLibrary', ':helloSharedLibrary', ':mainExecutable']
    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. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/SharedLibrarySoNameIntegrationTest.groovy

            hello(NativeLibrarySpec)
        }
    }
    """
        }
    
        @ToBeFixedForConfigurationCache
        def "library soname is file name when installName is not set"() {
            when:
            succeeds "helloSharedLibrary"
    
            then:
            final sharedLibrary = sharedLibrary("build/libs/hello/shared/hello")
            sharedLibrary.soName == sharedLibrary.file.name
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalBuildIntegrationTest.groovy

                // Relinking may (or may not) be required after recompiling
                executed ":linkHelloSharedLibrary", ":helloSharedLibrary"
                executed ":linkMainExecutable", ":mainExecutable"
            } else {
                skipped ":linkHelloSharedLibrary", ":helloSharedLibrary"
                skipped ":linkMainExecutable", ":mainExecutable"
            }
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativePreCompiledHeaderIntegrationTest.groovy

            when:
            buildFile << preCompiledHeaderComponent()
    
            then:
            args("--info")
            succeeds "helloSharedLibrary"
            libAndPCHTasksExecuted()
            pchCompiledOnceForEach([ PCHHeaderDirName ])
    
            expect:
            succeeds("clean", "helloSharedLibrary")
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  5. 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"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. 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"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/nativeplatform/NativeLanguageSamplesIntegrationTest.groovy

        def "c"() {
            given:
            sample c
    
            when:
            run "installMainExecutable"
    
            then:
            executedAndNotSkipped ":compileHelloSharedLibraryHelloC", ":linkHelloSharedLibrary", ":helloSharedLibrary",
                                  ":compileMainExecutableMainC", ":linkMainExecutable", ":mainExecutable"
    
            and:
            installation(c.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)
  8. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/NativeComponentReportOutputNormalizerTest.groovy

    Native library 'hello'
    ----------------------
    
    Source sets
        C++ source 'hello:cpp'
            srcDir: src/hello/cpp
    
    Binaries
        Shared library 'hello:sharedLibrary'
            build using task: :helloSharedLibrary
            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)
  9. platforms/documentation/docs/src/snippets/native-binaries/cpp/tests/nativeComponentReport.out

    Native library 'hello'
    ----------------------
    
    Source sets
        C++ source 'hello:cpp'
            srcDir: src/hello/cpp
    
    Binaries
        Shared library 'hello:sharedLibrary'
            build using task: :helloSharedLibrary
            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)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppPreCompiledHeaderSourcesIntegrationTest.groovy

        def "caching is disabled if precompiled headers are configured"() {
            writeStandardSourceFiles()
    
            when:
            buildFile << preCompiledHeaderComponent()
            withBuildCache().run "helloSharedLibrary", "--info"
    
            then:
            libAndPCHTasksExecuted()
            pchCompiledOnceForEach([PCHHeaderDirName])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top