mirror of https://github.com/PCSX2/pcsx2.git
22 lines
561 B
CMake
22 lines
561 B
CMake
|
# Once done, this will define
|
||
|
#
|
||
|
# LIBC_FOUND - system has libc
|
||
|
# LIBC_LIBRARIES - link these to use libc
|
||
|
|
||
|
if(LIBC_LIBRARIES)
|
||
|
set(LIBC_FIND_QUIETLY TRUE)
|
||
|
endif(LIBC_LIBRARIES)
|
||
|
|
||
|
find_library(librt NAMES rt)
|
||
|
find_library(libdl NAMES dl)
|
||
|
find_library(libm NAMES m)
|
||
|
set(LIBC_LIBRARIES ${librt} ${libdl} ${libm})
|
||
|
|
||
|
# handle the QUIETLY and REQUIRED arguments and set LIBC_FOUND to TRUE if
|
||
|
# all listed variables are TRUE
|
||
|
include(FindPackageHandleStandardArgs)
|
||
|
find_package_handle_standard_args(Libc DEFAULT_MSG LIBC_LIBRARIES)
|
||
|
|
||
|
mark_as_advanced(LIBC_LIBRARIES)
|
||
|
|