mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-11-11 07:41:36 +00:00
495ea65cc5
Also support dynamic/static opengl switching
23 lines
No EOL
391 B
CMake
23 lines
No EOL
391 B
CMake
include(LibFindMacros)
|
|
|
|
libfind_pkg_check_modules(GME_PKGCONF GME)
|
|
|
|
find_path(GME_INCLUDE_DIR
|
|
NAMES gme.h
|
|
PATHS
|
|
${GME_PKGCONF_INCLUDE_DIRS}
|
|
/usr/include/gme
|
|
/usr/local/include/gme
|
|
)
|
|
|
|
find_library(GME_LIBRARY
|
|
NAMES gme
|
|
PATHS
|
|
${GME_PKGCONF_LIBRARY_DIRS}
|
|
/usr/lib
|
|
/usr/local/lib
|
|
)
|
|
|
|
set(GME_PROCESS_INCLUDES GME_INCLUDE_DIR)
|
|
set(GME_PROCESS_LIBS GME_LIBRARY)
|
|
libfind_process(GME) |