diff options
author | Timothy Pearson <[email protected]> | 2012-01-11 16:28:30 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-01-11 16:28:30 -0600 |
commit | b73042f8dd7e537374bff3754e621f323ab7d109 (patch) | |
tree | 27cb27b83f5d9f7271ac6021c4de7b6bf7df7c42 | |
parent | 4c08c66641779bd7d14fc68dde22af8f08603712 (diff) | |
download | arts-b73042f8dd7e537374bff3754e621f323ab7d109.tar.gz arts-b73042f8dd7e537374bff3754e621f323ab7d109.zip |
Add WITH_ALL_OPTIONS to CMake
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index a75fed8..1008340 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -29,11 +29,12 @@ set( ARTS_VERSION "${ARTS_MAJOR_VERSION}.${ARTS_MINOR_VERSION}.${ARTS_MICRO_VERS ##### user requested options #################### +option( WITH_ALL_OPTIONS "Enable all optional support" OFF ) option( WITH_ALSA "Enable ALSA support" ON ) option( WITH_AUDIOFILE "Enable audiofile (wav) support" ON ) option( WITH_VORBIS "Enable Ogg/Vorbis support" ON ) option( WITH_MAD "Enable MAD mp3 decoder support" ON ) -option( WITH_GCC_VISIBILITY "Enable fvisibility and fvisibility-inlines-hidden" OFF ) +option( WITH_GCC_VISIBILITY "Enable fvisibility and fvisibility-inlines-hidden" ${WITH_ALL_OPTIONS} ) ##### paths setup ############################### |