Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getBuildSettings (0.17 sec)

  1. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeCppExternalSourceDependenciesIntegrationTest.groovy

            rootXcodeWorkspace.contentFile.assertHasProjects("${rootProjectName}.xcodeproj")
    
            def appProject = xcodeProject("${rootProjectName}.xcodeproj").projectFile
            appProject.indexTarget.getBuildSettings().HEADER_SEARCH_PATHS == toSpaceSeparatedList(file('src/main/headers'), checkoutDir(repo.name, commit.id.name, repo.id).file('src/main/public'))
    
            when:
            succeeds ':xcodeProject'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSwiftApplicationProjectIntegrationTest.groovy

                    .assertHasProjects("${rootProjectName}.xcodeproj", 'app/app.xcodeproj', 'greeter/greeter.xcodeproj')
    
            def project = xcodeProject("app/app.xcodeproj").projectFile
            project.indexTarget.getBuildSettings().SWIFT_INCLUDE_PATHS == null
            // TODO: SWIFT_INCLUDE_PATHS should contains ("greeter/build/modules/main/debug")
    
            when:
            def resultApp = xcodebuild
                    .withWorkspace(rootXcodeWorkspace)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeCppApplicationProjectIntegrationTest.groovy

                    .assertHasProjects("${rootProjectName}.xcodeproj", 'app/app.xcodeproj', 'greeter/greeter.xcodeproj')
    
            def project = xcodeProject("app/app.xcodeproj").projectFile
            project.indexTarget.getBuildSettings().HEADER_SEARCH_PATHS == toSpaceSeparatedList(file("app/src/main/headers"))
            // TODO: HEADER_SEARCH_PATHS should contains file("greeter/src/main/public")
    
            when:
            def resultApp = xcodebuild
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXBuildStyle.java

            this.name = Preconditions.checkNotNull(name);
            this.buildSettings = new NSDictionary();
        }
    
        @Override
        public String getName() {
            return name;
        }
    
        public NSDictionary getBuildSettings() {
            return buildSettings;
        }
    
        public void setBuildSettings(NSDictionary buildSettings) {
            this.buildSettings = buildSettings;
        }
    
        @Override
        public String isa() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top