Update raylib.pc.in to fix colors on macs running raylib.

Raylib is using c++11 colors, by default macOS does not use c++11 colors, so to fix this we have to put a flag to specify.
This commit is contained in:
Philo2010 2023-06-12 18:53:51 -07:00 committed by GitHub
parent f385d0ce1c
commit fda57fad15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,4 +10,4 @@ Version: @PROJECT_VERSION@
Libs: -L"${libdir}" -lraylib @PKG_CONFIG_LIBS_EXTRA@ Libs: -L"${libdir}" -lraylib @PKG_CONFIG_LIBS_EXTRA@
Libs.private: @PKG_CONFIG_LIBS_PRIVATE@ Libs.private: @PKG_CONFIG_LIBS_PRIVATE@
Requires.private: @GLFW_PKG_DEPS@ Requires.private: @GLFW_PKG_DEPS@
Cflags: -I"${includedir}" Cflags: -I"${includedir}" -std=c++11