Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isVisualCpp2015 (0.62 sec)

  1. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/googletest/GoogleTestSamplesIntegrationTest.groovy

        @ToBeFixedForConfigurationCache
        def "googleTest"() {
            given:
            // On windows, GoogleTest sample only works out of the box with VS2015
            assumeTrue(!OperatingSystem.current().windows || isVisualCpp2015())
    
            sample googleTest
    
            when:
            succeeds "runOperatorsTestPassingGoogleTestExe"
    
            then:
            executedAndNotSkipped ":compileOperatorsTestPassingGoogleTestExeOperatorsTestCpp",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitSamplesIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "cunit"() {
            given:
            // On windows, CUnit sample only works out of the box with VS2015
            assumeTrue(!OperatingSystem.current().windows || isVisualCpp2015())
    
            when:
            sample cunit
            succeeds "runOperatorsTestPassingCUnitExe"
    
            then:
            executedAndNotSkipped ":operatorsTestCUnitLauncher",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppToolChain.java

            if (windowsSdkSearchResult.isAvailable()) {
                windowsSdk = windowsSdkSearchResult.getComponent();
            }
    
            // Universal CRT is required only for VS2015
            if (isVisualCpp2015()) {
                SearchResult<UcrtInstall> ucrtSearchResult = ucrtLocator.locateComponent(ucrtDir);
                availability.mustBeAvailable(ucrtSearchResult);
                if (ucrtSearchResult.isAvailable()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top