Added: in static, we don't compile fmod since it only exists in dynlib

This commit is contained in:
vl 2010-09-23 15:51:24 +02:00
parent 2605a167f1
commit 4f25a32a40

View file

@ -41,7 +41,11 @@ using namespace NLMISC;
# define NL_DSOUND_AVAILABLE 0 # define NL_DSOUND_AVAILABLE 0
# define NL_XAUDIO2_AVAILABLE 0 # define NL_XAUDIO2_AVAILABLE 0
#elif defined( NL_OS_UNIX ) #elif defined( NL_OS_UNIX )
#ifdef NL_STATIC
# define NL_FMOD_AVAILABLE 0
#else
# define NL_FMOD_AVAILABLE 1 # define NL_FMOD_AVAILABLE 1
#endif
# define NL_OPENAL_AVAILABLE 1 # define NL_OPENAL_AVAILABLE 1
# define NL_DSOUND_AVAILABLE 0 # define NL_DSOUND_AVAILABLE 0
# define NL_XAUDIO2_AVAILABLE 0 # define NL_XAUDIO2_AVAILABLE 0