summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake')
-rw-r--r--cmake/FindXaudio2.cmake3
1 files changed, 2 insertions, 1 deletions
diff --git a/cmake/FindXaudio2.cmake b/cmake/FindXaudio2.cmake
index 065e2d358..477dfea72 100644
--- a/cmake/FindXaudio2.cmake
+++ b/cmake/FindXaudio2.cmake
@@ -4,6 +4,7 @@ include(CheckCXXSourceCompiles)
set(CMAKE_REQUIRED_FLAGS "")
check_cxx_source_compiles("
+ #include <cstdio>
#include <windows.h>
#undef NTDDI_VERSION
@@ -13,6 +14,6 @@ check_cxx_source_compiles("
#define _WIN32_WINNT _WIN32_WINNT_WIN8
#include <xaudio2.h>
- int main() { return 0; }"
+ int main() { printf(\"%s\\\\n\", XAUDIO2_DLL_A); return 0; }"
XAUDIO2_FOUND
)