mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 10:52:52 +00:00
9 lines
293 B
CMake
9 lines
293 B
CMake
![]() |
include(CheckIncludeFiles)
|
||
|
include(CheckLibraryExists)
|
||
|
|
||
|
check_include_files(uuid/uuid.h HAVE_UUID_UUID_H)
|
||
|
find_library(UUID_LIBRARY NAMES e2fs-uuid uuid)
|
||
|
if(UUID_LIBRARY)
|
||
|
check_library_exists("${UUID_LIBRARY}" uuid_generate_random "${LIB_INSTALL_DIR}" HAVE_UUID_LIBRARY)
|
||
|
endif(UUID_LIBRARY)
|