fixed minor check in FindDSound.cmake
This commit is contained in:
parent
d142ba1ab4
commit
ac26b209a6
@ -10,21 +10,23 @@
|
||||
|
||||
if (WIN32)
|
||||
include(FindWindowsSDK)
|
||||
get_windowssdk_library_dirs(${WINDOWSSDK_PREFERRED_DIR} WINSDK_LIB_DIRS)
|
||||
get_windowssdk_include_dirs(${WINDOWSSDK_PREFERRED_DIR} WINSDK_INCLUDE_DIRS)
|
||||
if (WINDOWSSDK_FOUND)
|
||||
get_windowssdk_library_dirs(${WINDOWSSDK_PREFERRED_DIR} WINSDK_LIB_DIRS)
|
||||
get_windowssdk_include_dirs(${WINDOWSSDK_PREFERRED_DIR} WINSDK_INCLUDE_DIRS)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# DSOUND_INCLUDE_DIR
|
||||
find_path(DSOUND_INCLUDE_DIR
|
||||
NAMES "dsound.h"
|
||||
PATHS ${WINSDK_INCLUDE_DIRS} "${DXSDK_DIR}"
|
||||
PATHS "${DXSDK_DIR}" ${WINSDK_INCLUDE_DIRS}
|
||||
PATH_SUFFIXES include
|
||||
DOC "The DirectSound include directory")
|
||||
|
||||
# DSOUND_LIBRARY
|
||||
find_library(DSOUND_LIBRARY
|
||||
NAMES dsound
|
||||
PATHS ${WINSDK_LIB_DIRS} "${DXSDK_DIR}"
|
||||
PATHS "${DXSDK_DIR}" ${WINSDK_LIB_DIRS}
|
||||
PATH_SUFFIXES lib lib/x86 lib/x64
|
||||
DOC "The DirectSound library")
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user