blob: 4fe83000c59a6617bcdaeebcef9bea353265e629 [file] [log] [blame]
Chia-I Wu6fffb3f2015-02-25 12:45:34 +08001# - FindPthreadStubs
2#
3# Copyright 2015 LunarG, Inc.
4
5find_package(PkgConfig)
6
7pkg_check_modules(PC_PTHREADSTUBS QUIET pthread-stubs)
8
9include(FindPackageHandleStandardArgs)
10find_package_handle_standard_args(PthreadStubs DEFAULT_MSG
11 PC_PTHREADSTUBS_FOUND)
12
13set(PTHREADSTUBS_INCLUDE_DIRS "")
14set(PTHREADSTUBS_LIBRARIES "")