Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for sharedLib (0.12 sec)

  1. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeMultipleSwiftProjectIntegrationTest.groovy

                .withScheme('App')
                .succeeds()
    
            then:
            exe("app/build/exe/main/debug/App").assertExists()
            sharedLib("hello/build/lib/main/debug/Hello").assertExists()
            sharedLib("log/build/lib/main/debug/Log").assertExists()
    
            when:
            xcodebuild
                .withWorkspace(rootXcodeWorkspace)
                .withScheme('App')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleCppProjectIntegrationTest.groovy

        @ToBeFixedForConfigurationCache
        def "can build C++ library from Xcode"() {
            useXcodebuildTool()
            def lib = new CppLib()
            def debugBinary = sharedLib("build/lib/main/debug/App")
            def releaseBinary = sharedLib("build/lib/main/release/App")
    
            given:
            buildFile << """
    apply plugin: 'cpp-library'
    """
    
            lib.writeToProject(testDirectory)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleSwiftProjectIntegrationTest.groovy

        def "can build Swift library from xcode"() {
            useXcodebuildTool()
            def lib = new SwiftLib()
            def debugBinary = sharedLib("build/lib/main/debug/App")
            def releaseBinary = sharedLib("build/lib/main/release/App")
    
            given:
            buildFile << """
                apply plugin: 'swift-library'
            """
    
            lib.writeToProject(testDirectory)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 31.3K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/fixtures/AbstractXcodeIntegrationSpec.groovy

        }
    
        protected TestFile exe(String str) {
            file(OperatingSystem.current().getExecutableName(str))
        }
    
        protected TestFile sharedLib(String str) {
            file(OperatingSystem.current().getSharedLibraryName(str))
        }
    
        protected TestFile staticLib(String str) {
            file(OperatingSystem.current().getStaticLibraryName(str))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 11.7K bytes
    - Viewed (0)
Back to top