Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for FRENCH (0.09 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/flavors/groovy/build.gradle

    plugins {
        id 'cpp'
    }
    
    // tag::flavors[]
    model {
        flavors {
            english
            french
        }
        components {
            hello(NativeLibrarySpec) {
                binaries.all {
                    if (flavor == flavors.french) {
                        cppCompiler.define "FRENCH"
                    }
                }
            }
        }
    }
    // end::flavors[]
    
    model {
        binaries {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 624 bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryFlavorsIntegrationTest.groovy

            buildFile << """
    model {
        binaries {
            all {
                if (flavor == flavors.french) {
                    cppCompiler.define "FRENCH"
                }
            }
        }
        components {
            main { targetFlavors "french" }
            hello { targetFlavors "french" }
            greetings { targetFlavors "french" }
        }
    }
    """
            when:
            succeeds "installMainExecutable"
    
            then:
    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/integTest/groovy/org/gradle/nativeplatform/PrebuiltLibrariesIntegrationTest.groovy

            file("libs/build.gradle") << """
    apply plugin: 'cpp'
    model {
        flavors {
            english
            french
        }
        components {
            hello(NativeLibrarySpec) {
                binaries.all {
                    if (flavor == flavors.french) {
                        cppCompiler.define "FRENCH"
                    }
                }
            }
        }
    }
    """
        }
    
        private void preBuildLibrary() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryBuildTypesIntegrationTest.groovy

                }
            }
            hello(NativeLibrarySpec)
        }
        binaries {
            all {
                if (buildType == buildTypes.debug) {
                    cppCompiler.define "FRENCH" // Equate 'debug' to 'french' for this test
                }
            }
        }
    }
            """
            and:
            succeeds "installMainDebugExecutable", "installMainReleaseExecutable"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/ObjectiveCHelloWorldApp.groovy

                #import <Foundation/Foundation.h>
    
                @interface Greeter : NSObject
                    - (void)sayHello;
                @end
    
                int sum(int a, int b);
    
                #ifdef FRENCH
                #pragma message("<==== compiling bonjour.h ====>")
                #else
                #pragma message("<==== compiling hello.h ====>")
                #endif
    
                #endif
            """)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CHelloWorldApp.groovy

                #include "common.h"
    
                #ifdef FRENCH
                char* greeting() {
                    return "${HELLO_WORLD_FRENCH}";
                }
                #endif
                #ifdef CUSTOM
                char* greeting() {
                    return CUSTOM;
                }
                #endif
                void DLL_FUNC sayHello() {
                    #if defined(FRENCH) || defined(CUSTOM)
                    printf("%s\\n", greeting());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/ObjectiveCppHelloWorldApp.groovy

                #import <Foundation/Foundation.h>
    
                #include <iostream>
    
                #ifdef FRENCH
                const char* greeting() {
                    return "${HELLO_WORLD_FRENCH}";
                }
                #endif
    
                void DLL_FUNC sayHello() {
                    #ifdef FRENCH
                    std::cout << greeting() << std::endl;
                    #else
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/variants/groovy/src/hello/cpp/hello.cpp

    #include <iostream>
    #include "hello.h"
    
    void LIB_FUNC hello () {
      #ifdef FRENCH
      std::cout << "Bonjour monde!" << std::endl;
      #else
      std::cout << "Hello world!" << std::endl;
      #endif
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 190 bytes
    - Viewed (0)
  9. src/main/webapp/js/admin/plugins/form-validator/location.js

    ","curaƧao","cyprus","czechia","denmark","djibouti","dominica","dominican republic","ecuador","egypt","el salvador","equatorial guinea","eritrea","estonia","ethiopia","falkland islands","faroe islands","fiji","finland","france","french guiana","french polynesia","french southern territories","gabon","gambia","georgia","germany","ghana","gibraltar","greece","greenland","grenada","guadeloupe","guam","guatemala","guernsey","guinea","guinea-bissau","guyana","haiti","heard island and mcdonald islands","honduras","hong...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 5.2K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppHelloWorldApp.groovy

            new SourceFile("cpp", "hello.cpp", """
                #include "common.h"
    
                #ifdef FRENCH
                const char* greeting() {
                    return "${HELLO_WORLD_FRENCH}";
                }
                #endif
    
                void DLL_FUNC Greeter::sayHello() {
                    #ifdef FRENCH
                    std::cout << greeting() << std::endl;
                    #else
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top