mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
13 lines
274 B
Text
13 lines
274 B
Text
macro "Ship" Ctrl+Shift+W {
|
|
ClearConsole();
|
|
cout("Building BRC...");
|
|
if(!Build(""))
|
|
cout("Error building BRC.");
|
|
else {
|
|
cout("Shipping BRC...");
|
|
if(!BuildProject("BRC/ship", ""))
|
|
cout("Error shipping BRC.");
|
|
else
|
|
cout("Build finished successfully.");
|
|
}
|
|
}
|