Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for CppSourceSet (0.11 sec)

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

            ${toolChain.buildScriptConfig}
        }
        components {
            someLib(NativeLibrarySpec) {
                binaries.withType(StaticLibraryBinarySpec) {
                    sources {
                        moreCpp(CppSourceSet)
                    }
                }
            }
        }
    }
    """
            when:
            succeeds "components"
    
            then:
            outputMatches """
    Native library 'someLib'
    ------------------------
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelSingleProjectIntegrationTest.groovy

        components {
            main(NativeExecutableSpec) {
                binaries.all { binary ->
                    def platformName = binary.targetPlatform.name
                    sources {
                        platformSources(CppSourceSet) {
                            source.srcDir "src/\$platformName/cpp"
                            exportedHeaders.srcDir "src/\$platformName/headers"
                        }
                    }
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 35.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/dsl.xml

                </tr>
                <tr>
                    <td>org.gradle.language.c.CSourceSet</td>
                </tr>
                <tr>
                    <td>org.gradle.language.cpp.CppSourceSet</td>
                </tr>
                <tr>
                    <td>org.gradle.language.objectivec.ObjectiveCSourceSet</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