From 35cf3f522029c1744a14d744ef92ea20c1c16152 Mon Sep 17 00:00:00 2001 From: Dave Nicolson Date: Mon, 19 Feb 2024 20:04:05 +0100 Subject: [PATCH] Add build styles --- kin/grammar/PBXProj.g4 | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/kin/grammar/PBXProj.g4 b/kin/grammar/PBXProj.g4 index 5a99f82..47c89ec 100644 --- a/kin/grammar/PBXProj.g4 +++ b/kin/grammar/PBXProj.g4 @@ -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? @@ -896,6 +897,10 @@ build_settings '}' ';' ; +build_styles + : BUILD_STYLES '=' reference_list ';' + ; + dst_path : DST_PATH '=' any_string ';' ; @@ -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 @@ -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';