Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for StaticLibraryBinarySpec (0.37 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/plugins/NativeComponentModelPluginTest.groovy

                targetPlatform.name == "platform"
                buildType.name == "bt"
                flavor.name == "flavor1"
            }
    
            and:
            StaticLibraryBinarySpec staticLibraryBinary = binaries.testStaticLibrary as StaticLibraryBinarySpec
            with(staticLibraryBinary) {
                name == 'staticLibrary'
                component == library
    
                toolChain.name == "tc"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeBinariesIntegrationTest.groovy

            given:
            buildFile << """
    apply plugin: "cpp"
    model {
        components {
            main(NativeLibrarySpec)
        }
        binaries {
            withType(StaticLibraryBinarySpec) {
                staticLibArchiver.args "not_a_file"
            }
        }
    }
    
            """
    
            and:
            file("src/main/cpp/hello.cpp") << """
                void hello() {
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/NativeSpecVisualStudioTargetBinary.java

    import org.gradle.nativeplatform.NativeExecutableBinarySpec;
    import org.gradle.nativeplatform.PreprocessingTool;
    import org.gradle.nativeplatform.SharedLibraryBinarySpec;
    import org.gradle.nativeplatform.StaticLibraryBinarySpec;
    import org.gradle.nativeplatform.internal.NativeBinarySpecInternal;
    import org.gradle.nativeplatform.tasks.InstallExecutable;
    import org.gradle.nativeplatform.test.NativeTestSuiteBinarySpec;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryConfigurationIntegrationTest.groovy

                    sharedLibraryFile = modPath(sharedLibraryFile)
                    sharedLibraryLinkFile = modPath(sharedLibraryLinkFile)
                }
                binaries.withType(StaticLibraryBinarySpec) {
                    staticLibraryFile = modPath(staticLibraryFile)
                }
            }
        }
    }
    """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/plugins/NativeComponentModelPlugin.java

    import org.gradle.nativeplatform.PrebuiltLibrary;
    import org.gradle.nativeplatform.Repositories;
    import org.gradle.nativeplatform.SharedLibraryBinarySpec;
    import org.gradle.nativeplatform.StaticLibraryBinarySpec;
    import org.gradle.nativeplatform.TargetedNativeComponent;
    import org.gradle.nativeplatform.internal.DefaultBuildTypeContainer;
    import org.gradle.nativeplatform.internal.DefaultFlavor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryDependenciesIntegrationTest.groovy

                    apply plugin: "cpp"
                    model {
                        // Allow static libraries to be linked into shared
                        binaries {
                            withType(StaticLibraryBinarySpec) {
                                if (toolChain in Gcc || toolChain in Clang) {
                                    cppCompiler.args '-fPIC'
                                }
                            }
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/dsl/dsl.xml

                </tr>
                <tr>
                    <td>org.gradle.nativeplatform.SharedLibraryBinarySpec</td>
                </tr>
                <tr>
                    <td>org.gradle.nativeplatform.StaticLibraryBinarySpec</td>
                </tr>
                <tr>
                    <td>org.gradle.nativeplatform.test.NativeTestSuiteBinarySpec</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 34.7K bytes
    - Viewed (2)
Back to top