Skip to content
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/generators/gencpp.ml
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ let write_build_data common_ctx filename classes main_deps boot_deps build_extra
output_string buildfile "<include name=\"${HXCPP}/build-tool/BuildCommon.xml\"/>\n";
output_string buildfile build_extra;
if (Gctx.defined common_ctx Define.HxcppSmartStings) then
output_string buildfile ("<error value=\"Hxcpp is out of date - please update\" unlessApi=\"" ^ api_string ^ "\" />\n");
output_string buildfile ("<error value=\"Hxcpp is out of date - please update, and/or update your build tools\" unlessApi=\"" ^ api_string ^ "\" />\n");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we say rebuild your build tools to be a bit more clear? Saying "update" may give the impression that it's enough to run haxelib update hxcpp

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah that makes more sense.

output_string buildfile "</xml>\n";
close_out buildfile

Expand Down
Loading