Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 475 for Cpp (0.02 sec)

  1. platforms/native/platform-native/src/main/resources/META-INF/gradle-plugins/org.gradle.microsoft-visual-cpp-compiler.properties

    Sterling Greene <******@****.***> 1700166003 -0500
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 98 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.language.cpp.plugins.CppPlugin.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/org.gradle.language.cpp.tasks.CppCompile.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/swiftpm/SwiftPackageManagerCppBuildExportIntegrationTest.groovy

                    id 'swiftpm-export'
                    id 'cpp-library'
                    id 'cpp-unit-test'
                }
    """
            def lib = new CppLib()
            lib.sources.writeToProject(testDirectory)
            lib.privateHeaders.writeToSourceDir(testDirectory.file("src/main/cpp"))
            lib.publicHeaders.writeToProject(testDirectory)
            file("src/test/cpp/test.cpp") << "// test"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/internal/DefaultCppComponentTest.groovy

        def "uses source layout convention when no other source files specified"() {
            def f1 = tmpDir.createFile("src/main/cpp/a.cpp")
            def f2 = tmpDir.createFile("src/main/cpp/nested/b.cpp")
            tmpDir.createFile("src/main/cpp/ignore-me.h")
            tmpDir.createFile("src/main/other/c.cpp")
            def f4 = tmpDir.createFile("d.cpp")
    
            expect:
            component.source.empty
            component.cppSource.files == [f1, f2] as Set
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cpp/plugins/CppUnitTestWithoutComponentIntegrationTest.groovy

            file("src/test/headers/tests.h") << """
                extern int test();
            """
            file("src/test/cpp/test.cpp") << """
                #include <tests.h>
                int test() {
                    return 0;
                }
            """
            file("src/test/cpp/test_main.cpp") << """
                #include <tests.h>
                int main() {
                    return test();
                }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/CppApplicationInitIntegrationTest.groovy

            then:
            subprojectDir.file("src/main/cpp").assertHasDescendants("hola.cpp")
            subprojectDir.file("src/main/headers").assertHasDescendants("hola.h")
            subprojectDir.file("src/test/cpp").assertHasDescendants("hola_test.cpp")
            dslFixtureFor(scriptDsl).assertGradleFilesGenerated()
    
            and:
            subprojectDir.file("src/main/cpp/${SAMPLE_APP_CLASS}").assertDoesNotExist()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/CppLibraryInitIntegrationTest.groovy

            subprojectDir.file("src/main/cpp").assertHasDescendants("hola.cpp")
            subprojectDir.file("src/main/public").assertHasDescendants("hola.h")
            subprojectDir.file("src/test/cpp").assertHasDescendants("hola_test.cpp")
            dslFixtureFor(scriptDsl).assertGradleFilesGenerated()
    
            and:
            subprojectDir.file("src/main/cpp/${SAMPLE_LIB_CLASS}").assertDoesNotExist()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cpp/plugins/CppUnitTestWithLibraryIntegrationTest.groovy

                #include <lib.h>
                int lib() {
                    return 0;
                }
            """
            file("src/main/headers/lib.h") << """
                extern int lib();
            """
            file("src/test/headers/tests.h") << """
            """
            file("src/test/cpp/test_lib.cpp") << """
                #include <lib.h>
                #include <tests.h>
                int main() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryBinariesIntegrationTest.groovy

                }
    """
    
            file("src/main/cpp/main.cpp") << """
                #include "head.h"
    
                int main () {
                    cppOut();
                    cOut();
                    return 0;
                }
    """
            and: "C and CPP sources sets depend on header file with same name"
    
            file("src/main/cpp/test.cpp") << """
                #include <iostream>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top