Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for resourceOnlyLibrary (0.24 sec)

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

        }
    
        StaticLibraryFixture staticLibrary(Object path) {
            return toolChain.staticLibrary(file(path))
        }
    
        NativeBinaryFixture resourceOnlyLibrary(Object path) {
            return toolChain.resourceOnlyLibrary(file(path))
        }
    
        NativeBinaryFixture machOBundle(Object path) {
            return new NativeBinaryFixture(file(path), toolChain)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/rc/WindowsResourcesIntegrationTest.groovy

                    std::cout << hello;
                    return 0;
                }
            """
    
            when:
            run "installMainExecutable"
    
            then:
            resourceOnlyLibrary("build/libs/resources/shared/resources").assertExists()
            installation("build/install/main").exec().out == "Hello!"
        }
    
        static List<WindowsSdkInstall> getNonDefaultSdks() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AvailableToolChains.java

                return new StaticLibraryFixture(new TestFile(OperatingSystem.current().getStaticLibraryName(path.toString())), this);
            }
    
            public NativeBinaryFixture resourceOnlyLibrary(Object path) {
                return new NativeBinaryFixture(new TestFile(OperatingSystem.current().getSharedLibraryName(path.toString())), this);
            }
    
            /**
    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