Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for StaticLibraryFixture (0.16 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/StaticLibraryFixture.groovy

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.fixtures
    
    import org.gradle.test.fixtures.file.TestFile
    
    class StaticLibraryFixture extends NativeBinaryFixture {
        StaticLibraryFixture(TestFile file, AvailableToolChains.InstalledToolChain toolChain) {
            super(file, toolChain)
        }
    
        List<String> listObjectFiles() {
            getBinaryInfo().listObjectFiles()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 982 bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/language/swift/AbstractSwiftMixedLanguageIntegrationTest.groovy

    import org.gradle.nativeplatform.fixtures.RequiresInstalledToolChain
    import org.gradle.nativeplatform.fixtures.SharedLibraryFixture
    import org.gradle.nativeplatform.fixtures.StaticLibraryFixture
    import org.gradle.nativeplatform.fixtures.ToolChainRequirement
    import org.gradle.util.internal.VersionNumber
    
    import static org.junit.Assume.assumeTrue
    
    @RequiresInstalledToolChain(ToolChainRequirement.SWIFTC)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AbstractInstalledToolChainIntegrationSpec.groovy

            return OperatingSystem.current().sharedLibrarySuffix.substring(1)
        }
    
        SharedLibraryFixture sharedLibrary(Object path) {
            return toolChain.sharedLibrary(file(path))
        }
    
        StaticLibraryFixture staticLibrary(Object path) {
            return toolChain.staticLibrary(file(path))
        }
    
        NativeBinaryFixture resourceOnlyLibrary(Object path) {
            return toolChain.resourceOnlyLibrary(file(path))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AvailableToolChains.java

                return new SharedLibraryFixture(new TestFile(OperatingSystem.current().getSharedLibraryName(path.toString())), this);
            }
    
            public StaticLibraryFixture staticLibrary(Object path) {
                return new StaticLibraryFixture(new TestFile(OperatingSystem.current().getStaticLibraryName(path.toString())), this);
            }
    
            public NativeBinaryFixture resourceOnlyLibrary(Object path) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 41.6K bytes
    - Viewed (0)
Back to top