Support build with OpenAL-Soft on Windows
This commit is contained in:
parent
1c422390e7
commit
a249fcbab3
2 changed files with 11 additions and 8 deletions
|
@ -36,8 +36,11 @@ NL_ADD_LIB_SUFFIX(${NLDRV_AL_LIB})
|
||||||
IF(WIN32)
|
IF(WIN32)
|
||||||
# Find and include EFX-Util on Windows.
|
# Find and include EFX-Util on Windows.
|
||||||
FIND_PACKAGE(EFXUtil)
|
FIND_PACKAGE(EFXUtil)
|
||||||
INCLUDE_DIRECTORIES(${EFXUTIL_INCLUDE_DIR})
|
IF(EFXUTIL_FOUND)
|
||||||
TARGET_LINK_LIBRARIES(${NLDRV_AL_LIB} ${EFXUTIL_LIBRARY})
|
INCLUDE_DIRECTORIES(${EFXUTIL_INCLUDE_DIR})
|
||||||
|
TARGET_LINK_LIBRARIES(${NLDRV_AL_LIB} ${EFXUTIL_LIBRARY})
|
||||||
|
ADD_DEFINITIONS(-DEFX_CREATIVE_AVAILABLE=1)
|
||||||
|
ENDIF()
|
||||||
ENDIF()
|
ENDIF()
|
||||||
|
|
||||||
IF(WITH_PCH)
|
IF(WITH_PCH)
|
||||||
|
|
|
@ -17,12 +17,12 @@
|
||||||
#ifndef NL_EXT_AL_H
|
#ifndef NL_EXT_AL_H
|
||||||
#define NL_EXT_AL_H
|
#define NL_EXT_AL_H
|
||||||
|
|
||||||
#ifdef NL_OS_WINDOWS
|
#ifndef EFX_CREATIVE_AVAILABLE
|
||||||
# define EFX_CREATIVE_AVAILABLE 1
|
#define EFX_CREATIVE_AVAILABLE 0
|
||||||
# define EAX_AVAILABLE 0
|
#endif
|
||||||
#else
|
|
||||||
# define EFX_CREATIVE_AVAILABLE 0
|
#ifndef EAX_AVAILABLE
|
||||||
# define EAX_AVAILABLE 0
|
#define EAX_AVAILABLE 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if EAX_AVAILABLE
|
#if EAX_AVAILABLE
|
||||||
|
|
Loading…
Reference in a new issue