mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2025-04-11 12:40:45 +00:00
Add some more build time options to the startup output.
* cURL * Systemwide installation
This commit is contained in:
parent
e9a0162eea
commit
e3aefbff2c
1 changed files with 12 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue