Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CppAppWithOptionalFeature (0.17 sec)

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

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.fixtures.app
    
    /**
     * A single project C++ app, with several source files, and an optional compile time feature.
     */
    class CppAppWithOptionalFeature extends CppSourceElement {
        final greeter = new CppGreeter()
        final main = new CppMainWithOptionalFeature(greeter)
    
        @Override
        SourceElement getSources() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationIntegrationTest.groovy

    import org.gradle.nativeplatform.fixtures.app.CppAppWithLibrary
    import org.gradle.nativeplatform.fixtures.app.CppAppWithLibraryAndOptionalFeature
    import org.gradle.nativeplatform.fixtures.app.CppAppWithOptionalFeature
    import org.gradle.nativeplatform.fixtures.app.CppCompilerDetectingTestApp
    import org.gradle.nativeplatform.fixtures.app.SourceElement
    import spock.lang.Issue
    
    import static org.gradle.util.Matchers.containsText
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 19:11:01 UTC 2024
    - 42.5K bytes
    - Viewed (0)
Back to top