Add some more build time options to the startup output.

* cURL
* Systemwide installation
This commit is contained in:
Yamagi 2020-10-08 12:08:20 +02:00
parent e9a0162eea
commit e3aefbff2c

View file

@ -106,11 +106,23 @@ Qcommon_Buildstring(void)
#ifndef DEDICATED_ONLY
printf("Client build options:\n");
#ifdef USE_CURL
printf(" + cURL HTTP downloads\n");
#else
printf(" - cURL HTTP downloads\n");
#endif
#ifdef USE_OPENAL
printf(" + OpenAL audio\n");
#else
printf(" - OpenAL audio\n");
#endif
#ifdef SYSTEMWIDE
printf(" + Systemwide installation\n");
#else
printf(" - Systemwide installation\n");
#endif
#endif
printf("Platform: %s\n", YQ2OSTYPE);