Skip to content

Commit

Permalink
Add base_configuration_reference_ fields to XCBuildConfiguration
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Roche-Chosson committed Oct 25, 2024
1 parent e3eed93 commit 6473e92
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions lib/xcodeproj/project/object/build_configuration.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
require 'xcodeproj/project/object/file_system_synchronized_root_group'

module Xcodeproj
class Project
module Object
Expand Down Expand Up @@ -25,6 +27,20 @@ class XCBuildConfiguration < AbstractObject
#
has_one :base_configuration_reference, PBXFileReference

# @return [PBXFileSystemSynchronizedRootGroup] an optional reference to a group
# synchronized with the file system that contains a configuration file (`.xcconfig`).
#
# @note the configuration file relative path must be provided in `base_configuration_reference_relative_path`
#
has_one :base_configuration_reference_anchor, PBXFileSystemSynchronizedRootGroup

# @return [String] the relative path of a configuration file (`.xcconfig`)
# inside a group synchronized with the file system.
#
# @note the configuration file group must be provided in `base_configuration_reference_anchor`
#
attribute :base_configuration_reference_relative_path, String

public

# @!group AbstractObject Hooks
Expand Down

0 comments on commit 6473e92

Please sign in to comment.