Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for installMainDebugExecutable (0.27 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
    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

                            exportedHeaders.srcDir "src/util/\${binary.buildType.name}"
                        }
                    }
                }
            }
        }
    }
    """
            when:
            succeeds "installMainDebugExecutable", "installMainReleaseExecutable"
    
            then:
            installation("build/install/main/debug").exec().out == "Hello from the debug 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