File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -674,7 +674,7 @@ void Project::load(const yaml &root)
674674 YAML_EXTRACT_AUTO (rc_enabled);
675675 // YAML_EXTRACT_AUTO(disabled);
676676 YAML_EXTRACT_AUTO (skip_on_server);
677- YAML_EXTRACT_AUTO (skip_default_api );
677+ YAML_EXTRACT_AUTO (create_default_api );
678678 YAML_EXTRACT_AUTO (default_api_start);
679679 YAML_EXTRACT_AUTO (build_dependencies_with_same_config);
680680
@@ -1295,7 +1295,7 @@ yaml Project::save() const
12951295 ADD_IF_NOT_VAL_TRIPLE (rc_enabled);
12961296 // ADD_IF_VAL_TRIPLE(disabled);
12971297 ADD_IF_VAL_TRIPLE (skip_on_server);
1298- ADD_IF_VAL_TRIPLE (skip_default_api );
1298+ ADD_IF_VAL_TRIPLE (create_default_api );
12991299 ADD_IF_NOT_EMPTY (default_api_start);
13001300 ADD_IF_VAL_TRIPLE (build_dependencies_with_same_config);
13011301
Original file line number Diff line number Diff line change @@ -239,7 +239,7 @@ struct Project
239239 bool rc_enabled = true ;
240240 // bool disabled = false;
241241 bool skip_on_server = false ;
242- bool skip_default_api = false ;
242+ bool create_default_api = false ;
243243 String default_api_start;
244244
245245 StringSet api_name;
Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ String dump_yaml_config(const yaml &root)
179179 " build_dependencies_with_same_config" ,
180180 " disabled" ,
181181 " skip_on_server" ,
182- " skip_default_api " ,
182+ " create_default_api " ,
183183 " default_api_start" ,
184184
185185 " api_name" ,
Original file line number Diff line number Diff line change @@ -2307,7 +2307,7 @@ endif()
23072307 ctx.addLine (" PRIVATE CPPAN_CONFIG=\" ${config}\" " );
23082308 }
23092309 auto api_names = p.api_name ;
2310- if (!p. skip_default_api )
2310+ if (p. create_default_api )
23112311 {
23122312 auto pp = p.pkg .ppath ;
23132313 while (!pp.empty () && pp.front () != p.default_api_start )
You can’t perform that action at this time.
0 commit comments