diff options
author | Chris Robinson <[email protected]> | 2008-05-18 18:40:53 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2008-05-18 18:40:53 -0700 |
commit | fe79ab351ab6faa585d88de3cce6f5b806b276ed (patch) | |
tree | 6c1f20660b84d64f9079c656894df5334211f5ff /CMakeLists.txt | |
parent | dc0a3a665342632673b9d7da6f91121b3dc0b88f (diff) |
Add a simple example that prints out some OpenAL info
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 363c7974..09ba20d0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,7 +22,9 @@ OPTION(WINMM "Check for Windows Multimedia backend" ON) OPTION(DLOPEN "Check for the dlopen API for loading optional libs" ON) -OPTION(WERROR "Treat compile warnings as errors" OFF) +OPTION(WERROR "Treat compile warnings as errors" OFF) + +OPTION(EXAMPLES "Build example programs" ON) SET(LIB_MAJOR_VERSION "1") @@ -316,6 +318,11 @@ INSTALL(FILES include/AL/al.h DESTINATION include/AL ) +IF(EXAMPLES) + ADD_EXECUTABLE(openal-info examples/openal-info.c) + TARGET_LINK_LIBRARIES(openal-info ${LIBNAME}) +ENDIF() + MESSAGE(STATUS "") MESSAGE(STATUS "Building OpenAL with support for the following backends:") MESSAGE(STATUS " ${BACKENDS}") |