Skip to content

Commit

Permalink
change cmake variable type to BOOL
Browse files Browse the repository at this point in the history
Turned out is was BOOL, not BOOLEAN all along. Just recently CMake started
to warn about it.
  • Loading branch information
i-rinat committed Mar 2, 2020
1 parent f9c02f4 commit 581c984
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DCONFIG_LOG_TO_STDERR=${LOG_TO_STDERR}")

include_directories(${REQ_INCLUDE_DIRS})

set(USE_BUNDLED_PULSEAUDIO_HEADERS 1 CACHE BOOLEAN "Use bundled PulseAudio headers instead of system ones")
set(USE_BUNDLED_PULSEAUDIO_HEADERS 1 CACHE BOOL "Use bundled PulseAudio headers instead of system ones")
if (${USE_BUNDLED_PULSEAUDIO_HEADERS})
include_directories(3rdparty/pulseaudio-headers)
else()
Expand Down

0 comments on commit 581c984

Please sign in to comment.