Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CppApplicationDependenciesIntegrationTest (0.18 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationDependenciesIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.language.cpp
    
    import org.gradle.language.AbstractNativeProductionComponentDependenciesIntegrationTest
    
    class CppApplicationDependenciesIntegrationTest extends AbstractNativeProductionComponentDependenciesIntegrationTest implements CppTaskNames {
        @Override
        protected void makeComponentWithLibrary() {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/AbstractNativeProductionComponentDependenciesIntegrationTest.groovy

    abstract class AbstractNativeProductionComponentDependenciesIntegrationTest extends AbstractNativeDependenciesIntegrationTest {
        @ToBeFixedForConfigurationCache(bottomSpecs = ['CppLibraryDependenciesIntegrationTest', 'CppApplicationDependenciesIntegrationTest'])
        def "can define different implementation dependencies on each binary"() {
            given:
            createDirs("lib")
            settingsFile << 'include "lib"'
            makeComponentWithLibrary()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/AbstractNativeDependenciesIntegrationTest.groovy

            settingsFile << """
                rootProject.name = 'test'
            """
        }
    
        @ToBeFixedForConfigurationCache(bottomSpecs = [
            'CppUnitTestDependenciesIntegrationTest',
            'CppApplicationDependenciesIntegrationTest',
            'CppLibraryDependenciesIntegrationTest',
        ])
        def "can define implementation dependencies on component"() {
            given:
            createDirs("lib")
            settingsFile << 'include "lib"'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top