Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for ExeWithLibraryUsingLibraryHelloWorldApp (0.58 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/ExeWithLibraryUsingLibraryHelloWorldApp.groovy

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.fixtures.app
    
    import org.gradle.integtests.fixtures.SourceFile
    import org.gradle.test.fixtures.file.TestFile
    
    class ExeWithLibraryUsingLibraryHelloWorldApp extends HelloWorldApp {
    
        void writeSources(TestFile mainSourceDir, TestFile librarySourceDir, TestFile greetingsLibrarySourceDir) {
            getExecutable().writeSources(mainSourceDir)
    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/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLanguageParallelIntegrationTest.groovy

            given:
            def apps = [
                first : new ExeWithLibraryUsingLibraryHelloWorldApp(),
                second: new ExeWithLibraryUsingLibraryHelloWorldApp(),
                third : new ExeWithLibraryUsingLibraryHelloWorldApp(),
            ]
    
            apps.each { name, app ->
                buildFile << app.pluginScript
                buildFile << app.extraConfiguration
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeDependentComponentsIntegrationSpec.groovy

    import org.gradle.nativeplatform.fixtures.AbstractInstalledToolChainIntegrationSpec
    import org.gradle.nativeplatform.fixtures.app.ExeWithLibraryUsingLibraryHelloWorldApp
    
    class NativeDependentComponentsIntegrationSpec extends AbstractInstalledToolChainIntegrationSpec {
    
        def helloWorldApp = new ExeWithLibraryUsingLibraryHelloWorldApp()
    
        def setup() {
            settingsFile << "rootProject.name = 'test'"
    
            buildFile << '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryFlavorsIntegrationTest.groovy

    import org.gradle.nativeplatform.fixtures.AbstractInstalledToolChainIntegrationSpec
    import org.gradle.nativeplatform.fixtures.NativePlatformsTestFixture
    import org.gradle.nativeplatform.fixtures.app.ExeWithLibraryUsingLibraryHelloWorldApp
    import org.gradle.nativeplatform.fixtures.app.HelloWorldApp
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.UnitTestPreconditions
    
    @Requires([
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelMultiProjectIntegrationTest.groovy

    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    import org.gradle.nativeplatform.fixtures.app.CppHelloWorldApp
    import org.gradle.nativeplatform.fixtures.app.ExeWithLibraryUsingLibraryHelloWorldApp
    import org.gradle.plugins.ide.internal.IdePlugin
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.IntegTestPreconditions
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryDependenciesIntegrationTest.groovy

    import org.gradle.nativeplatform.fixtures.app.CppHelloWorldApp
    import org.gradle.nativeplatform.fixtures.app.ExeWithDiamondDependencyHelloWorldApp
    import org.gradle.nativeplatform.fixtures.app.ExeWithLibraryUsingLibraryHelloWorldApp
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.UnitTestPreconditions
    
    @Requires([
        UnitTestPreconditions.CanInstallExecutable,
        UnitTestPreconditions.NotMacOs
    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/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/ExeWithDiamondDependencyHelloWorldApp.groovy

     * limitations under the License.
     */
    
    
    
    package org.gradle.nativeplatform.fixtures.app
    
    import org.gradle.integtests.fixtures.SourceFile
    
    class ExeWithDiamondDependencyHelloWorldApp extends ExeWithLibraryUsingLibraryHelloWorldApp {
    
        @Override
        String getEnglishOutput() {
            return HELLO_WORLD + " " + HELLO_WORLD + " " + HELLO_WORLD
        }
    
        @Override
        String getFrenchOutput() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioMultiProjectIntegrationTest.groovy

    import org.gradle.nativeplatform.fixtures.app.CppAppWithLibrary
    import org.gradle.nativeplatform.fixtures.app.CppHelloWorldApp
    import org.gradle.nativeplatform.fixtures.app.ExeWithLibraryUsingLibraryHelloWorldApp
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.IntegTestPreconditions
    
    
    class VisualStudioMultiProjectIntegrationTest extends AbstractVisualStudioIntegrationSpec {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryApiDependenciesIntegrationTest.groovy

    import org.gradle.nativeplatform.fixtures.AbstractInstalledToolChainIntegrationSpec
    import org.gradle.nativeplatform.fixtures.app.CppHelloWorldApp
    import org.gradle.nativeplatform.fixtures.app.ExeWithLibraryUsingLibraryHelloWorldApp
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.UnitTestPreconditions
    
    @Requires([
        UnitTestPreconditions.CanInstallExecutable,
        UnitTestPreconditions.NotMacOs
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelSingleProjectIntegrationTest.groovy

    import org.gradle.nativeplatform.fixtures.app.CppHelloWorldApp
    import org.gradle.nativeplatform.fixtures.app.ExeWithDiamondDependencyHelloWorldApp
    import org.gradle.nativeplatform.fixtures.app.ExeWithLibraryUsingLibraryHelloWorldApp
    import org.gradle.nativeplatform.fixtures.app.MixedLanguageHelloWorldApp
    import org.gradle.nativeplatform.fixtures.app.WindowsResourceHelloWorldApp
    import org.gradle.test.precondition.Requires
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 35.7K bytes
    - Viewed (0)
Back to top