Skip to content

Commit

Permalink
Add build styles
Browse files Browse the repository at this point in the history
  • Loading branch information
dnicolson authored and Serchinastico committed Feb 21, 2024
1 parent 38d7fbb commit 51276d7
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion kin/grammar/PBXProj.g4
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,8 @@ pbx_project
attributes?
build_configuration_list
build_settings?
compatibility_version
compatibility_version?
build_styles?
development_region?
has_scanned_for_encodings
known_regions?
Expand Down Expand Up @@ -896,6 +897,10 @@ build_settings
'}' ';'
;

build_styles
: BUILD_STYLES '=' reference_list ';'
;

dst_path
: DST_PATH '=' any_string ';'
;
Expand Down Expand Up @@ -976,6 +981,7 @@ any_token
| ROOT_OBJECT
| PBX_AGGREGATE_TARGET
| PBX_BUILD_FILE
| PBX_BUILD_STYLE
| PBX_CONTAINER_ITEM_PROXY
| PBX_COPY_FILES_BUILD_PHASE
| PBX_FILE_REFERENCE
Expand Down Expand Up @@ -1208,6 +1214,7 @@ FILE_TYPE : 'fileType';
REMOTE_REF : 'remoteRef';
BASE_CONFIGURATION_REFERENCE : 'baseConfigurationReference';
BUILD_SETTINGS : 'buildSettings';
BUILD_STYLES : 'buildStyles';
DST_PATH : 'dstPath';
DST_SUBFOLDER_SPEC : 'dstSubfolderSpec';
PRODUCT_GROUP : 'ProductGroup';
Expand Down

0 comments on commit 51276d7

Please sign in to comment.