Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for compileDebugCpp (0.27 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/cpp-shared-library-task-graph.dot

      node [style=filled, fillcolor="#cfe2f3"]
      rankdir=LR
    
      compileDebugCpp -> linkDebug -> assembleDebug -> assemble -> build [dir=back]
      check -> build [dir=back]
      compileReleaseCpp -> linkRelease -> assembleRelease [dir=back]
      clean
    
      // Ensure ordering
      compileDebugCpp -> compileReleaseCpp -> clean [style=invis]
      {rank=same compileDebugCpp compileReleaseCpp clean}
    
      assemble -> empty1 -> empty2 -> check [style=invis]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppApplicationPluginTest.groovy

            project.evaluate()
    
            then:
            def compileDebugCpp = project.tasks.compileDebugCpp
            compileDebugCpp instanceof CppCompile
            compileDebugCpp.includes.files.first() == project.file("src/main/headers")
            compileDebugCpp.source.files == [src] as Set
            compileDebugCpp.objectFileDir.get().asFile == projectDir.file("build/obj/main/debug")
            compileDebugCpp.debuggable
            !compileDebugCpp.optimized
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/cpp-unit-test-task-graph.dot

      compileDebugCpp -> linkTest [dir=back]
      assemble -> build [dir=back]
      tripleDots -> assemble [dir=back]
      clean
    
      compileDebugCpp [style="dashed,filled", fillcolor=grey]
      tripleDots [style="dashed,filled", fillcolor=grey, label="..."]
    
      // Ensure ordering
      compileTestCpp -> compileDebugCpp -> clean [style=invis]
      {rank=same compileDebugCpp compileTestCpp clean}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppStaticLibraryLinkageIntegrationTest.groovy

            return [":compileDebug${variant.capitalize()}Cpp", ":createDebug${variant.capitalize()}"]
        }
    
        @Override
        protected String getDevelopmentBinaryCompileTask() {
            return ":compileDebugCpp"
        }
    
        @Override
        protected SourceElement getComponentUnderTest() {
            return new CppLib()
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppLibraryPluginTest.groovy

            then:
            def compileDebugCpp = project.tasks.compileDebugCpp
            compileDebugCpp instanceof CppCompile
            compileDebugCpp.includes.files.take(2) as List == [publicHeaders, privateHeaders]
            compileDebugCpp.source.files as List == [src]
            compileDebugCpp.objectFileDir.get().asFile == projectDir.file("build/obj/main/debug")
            compileDebugCpp.debuggable
            !compileDebugCpp.optimized
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/cpp-application-task-graph.dot

      node [style=filled, fillcolor="#cfe2f3"]
      rankdir=LR
    
      compileDebugCpp -> linkDebug -> assemble -> build [dir=back]
      linkDebug -> assembleDebug [dir=back]
      check -> build [dir=back]
      compileReleaseCpp -> linkRelease -> assembleRelease [dir=back]
      clean
    
      // Ensure ordering
      compileDebugCpp -> compileReleaseCpp -> clean [style=invis]
      {rank=same compileDebugCpp compileReleaseCpp clean}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/cpp-static-library-task-graph.dot

      node [style=filled, fillcolor="#cfe2f3"]
      rankdir=LR
    
      compileDebugCpp -> createDebug -> assembleDebug -> assemble -> build [dir=back]
      check -> build [dir=back]
      compileReleaseCpp -> createRelease -> assembleRelease [dir=back]
      clean
    
      // Ensure ordering
      compileDebugCpp -> compileReleaseCpp -> clean [style=invis]
      {rank=same compileDebugCpp compileReleaseCpp clean}
    
      assemble -> empty1 -> empty2 -> check [style=invis]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppSharedLibraryLinkageIntegrationTest.groovy

            return [":compileDebug${variant.capitalize()}Cpp", ":linkDebug${variant.capitalize()}"]
        }
    
        @Override
        protected String getDevelopmentBinaryCompileTask() {
            return ":compileDebugCpp"
        }
    
        @Override
        protected SourceElement getComponentUnderTest() {
            return new CppLib()
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppSystemHeaderDiscoveryIntegrationTest.groovy

            buildFile << """
                plugins { id 'cpp-application' }
                task sysHeaders {
                    doLast {
                        def out = file("${outputFile.toURI()}")
                        out.text = tasks.compileDebugCpp.systemIncludes.join('\\n')
                    }
                }
            """
    
            when:
            //TODO this fails in CI (for unknown reasons) with project access checks based on configuration barrier
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cpp/plugins/CppUnitTestWithLibraryDependenciesIntegrationTest.groovy

    """
        }
    
        @Override
        protected String getProductionComponentDsl() {
            return "library"
        }
    
        @Override
        protected List<String> getRunTestTasks() {
            return [":compileDebugCpp", ":compileTestCpp", ":linkTest", ":installTest", ":runTest"]
        }
    
        @Override
        protected List<String> getLibDebugTasks() {
            return [":lib:compileDebugCpp", ":lib:linkDebug"]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top