Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for installMainReleaseExecutable (0.32 sec)

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

                    cppCompiler.define "FRENCH" // Equate 'debug' to 'french' for this test
                }
            }
        }
    }
            """
            and:
            succeeds "installMainDebugExecutable", "installMainReleaseExecutable"
    
            then:
            installation("build/install/main/debug").exec().out == helloWorldApp.frenchOutput
            installation("build/install/main/release").exec().out == helloWorldApp.englishOutput
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryApiDependenciesIntegrationTest.groovy

                        }
                    }
                }
            }
        }
    }
    """
            when:
            succeeds "installMainDebugExecutable", "installMainReleaseExecutable"
    
            then:
            installation("build/install/main/debug").exec().out == "Hello from the debug library"
            installation("build/install/main/release").exec().out == "Hello from the release library"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top