Added new OS X build options to version string.

This commit is contained in:
Camilla Berglund 2013-02-01 05:27:34 +01:00
parent 231ee1bdc7
commit a0e4fad65a

View File

@ -146,6 +146,12 @@ const char* _glfwPlatformGetVersionString(void)
const char* version = _GLFW_VERSION_FULL
#if defined(_GLFW_BUILD_DLL)
" dynamic"
#endif
#if defined(_GLFW_USE_CHDIR)
" chdir"
#endif
#if defined(_GLFW_USE_MENUBAR)
" menubar"
#endif
;