Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for pbxproj (0.17 sec)

  1. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/plugins/XcodePlugin.java

        @Override
        protected void onApply(final Project project) {
            TaskProvider<? extends Task> lifecycleTask = getLifecycleTask();
            lifecycleTask.configure(withDescription("Generates XCode project files (pbxproj, xcworkspace, xcscheme)"));
    
            if (isRoot()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/tasks/GenerateXcodeProjectFileTask.java

    import static org.gradle.ide.xcode.internal.XcodeUtils.toSpaceSeparatedList;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioMultiProjectIntegrationTest.groovy

                ":two:twoDllVisualStudioFilters", ":two:twoDllVisualStudioProject",
                ":visualStudio")
    
            and:
            def appProject = projectFile("app.vcxproj")
            def oneProject = projectFile("one/one.vcxproj")
            def twoProject = projectFile("two/twoDll.vcxproj")
    
            final mainSolution = solutionFile("app.sln")
            mainSolution.assertHasProjects("app", "one", "twoDll")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelMultiProjectIntegrationTest.groovy

                    file("app.sln"),
                    file("exe/exe_mainExe.vcxproj"),
                    file("exe/exe_mainExe.vcxproj.filters"),
                    file("lib/lib_mainDll.vcxproj"),
                    file("lib/lib_mainDll.vcxproj.filters"),
                    file("lib/lib_mainDll.vcxproj"),
                    file("lib/lib_mainDll.vcxproj.filters")
            ]
            generatedFiles*.assertExists()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSingleProjectIntegrationTest.groovy

            run "visualStudio"
    
            then:
            result.assertTasksExecuted(":visualStudio", ":appVisualStudioSolution", getProjectTasks("app"))
    
            and:
            final projectFile = projectFile("app.vcxproj")
            projectFile.assertHasComponentSources(app, "src/main")
            projectFile.projectConfigurations.keySet() == projectConfigurations
            projectFile.projectConfigurations.values().each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelSingleProjectIntegrationTest.groovy

            then:
            final exeProject = projectFile("mainExe.vcxproj")
            final helloDllProject = projectFile("helloDll.vcxproj")
            final helloLibProject = projectFile("helloDll.vcxproj")
            final greetDllProject = projectFile("greetingsLib.vcxproj")
            final greetLibProject = projectFile("greetingsLib.vcxproj")
            final mainSolution = solutionFile("app.sln")
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 35.7K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioIncrementalIntegrationTest.groovy

            and:
            final solutionFile = solutionFile("foo.sln")
            solutionFile.assertReferencesProject(projectFile("app.vcxproj"), ["debug", "release"])
    
            when:
            buildFile << """
                visualStudio {
                    projects.all {
                        projectFile.location = file('foo.vcxproj')
                    }
                }
            """
            run "visualStudio"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/sourceset/GeneratedSourcesIntegrationTest.groovy

            then:
            final mainSolution = new SolutionFile(file("test.sln"))
            mainSolution.assertHasProjects("mainExe")
    
            and:
            final projectFile = new ProjectFile(file("mainExe.vcxproj"))
            projectFile.sourceFiles as Set == [
                    "build.gradle",
                    "build/src/generated/c/hello.c",
                    "build/src/generated/c/main.c",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/AbstractVisualStudioProjectIntegrationTest.groovy

        }
    
        SolutionFile getSolutionFile() {
            return solutionFile("${rootProjectName}.sln")
        }
    
        ProjectFile getProjectFile() {
            return projectFile("${visualStudioProjectName}.vcxproj")
        }
    
        abstract String getBuildFile(VariantContext variantContext)
    
        abstract void makeSingleProject()
    
        abstract String getVisualStudioProjectName()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  10. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/googletest/GoogleTestIntegrationTest.groovy

            final mainSolution = new SolutionFile(file("test.sln"))
            mainSolution.assertHasProjects("helloTestExe", "helloLib", "helloDll")
    
            and:
            final projectFile = new ProjectFile(file("helloTestExe.vcxproj"))
            projectFile.sourceFiles as Set == [
                    "build.gradle",
                    "src/helloTest/cpp/test.cpp",
                    "src/hello/cpp/hello.cpp",
                    "src/hello/cpp/sum.cpp"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
Back to top