From 0da6939e848eb44cc5934a4e8a441c7a59b89ffe Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 24 Apr 2015 22:30:28 +0200 Subject: [PATCH] - unmark OpenAL as 'advanced' in CMake so we can set its include and library paths in the IDE without having to enable the advanced display which isn't really helpful. --- src/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 50acfe2cb..7ea29f012 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -215,6 +215,7 @@ endif( WIN32 ) if( NOT NO_OPENAL ) find_package( OpenAL ) + mark_as_advanced(CLEAR OPENAL_LIBRARY OPENAL_INCLUDE_DIR) if( OPENAL_FOUND ) include_directories( ${OPENAL_INCLUDE_DIR} ) set( ZDOOM_LIBS ${OPENAL_LIBRARY} ${ZDOOM_LIBS} )