mirror of
https://github.com/dingusdev/dingusppc.git
synced 2025-01-09 06:30:51 +00:00
15 lines
346 B
CMake
15 lines
346 B
CMake
|
# Copyright (c) 2015 Andrew Kelley
|
||
|
# This file is MIT licensed.
|
||
|
# See http://opensource.org/licenses/MIT
|
||
|
|
||
|
# WASAPI_FOUND
|
||
|
# AUDIOCLIENT_H
|
||
|
|
||
|
if(WIN32)
|
||
|
include(CheckIncludeFile)
|
||
|
check_include_file(audioclient.h AUDIOCLIENT_H)
|
||
|
endif()
|
||
|
|
||
|
include(FindPackageHandleStandardArgs)
|
||
|
find_package_handle_standard_args(WASAPI DEFAULT_MSG AUDIOCLIENT_H)
|