1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-04-29 23:29:41 +02:00

Mark Find*.cmake defined variables as advanced

This commit is contained in:
Dmitry Vedenko 2021-08-09 12:58:07 +03:00 committed by Dmitry Vedenko
parent 4cd409beed
commit 22b2e11b70
3 changed files with 18 additions and 0 deletions

View File

@ -28,4 +28,10 @@ if( NOT PortAudio_FOUND )
message( FATAL_ERROR "Could not find PortAudio")
endif()
endif()
mark_as_advanced(
PortAudio_FOUND
PortAudio_INCLUDE_DIR
PortAudio_LIBRARIES
)
endif()

View File

@ -28,4 +28,10 @@ if( NOT PortMidi_FOUND )
message( FATAL_ERROR "Could not find PortMidi")
endif()
endif()
mark_as_advanced(
PortMidi_FOUND
PortMidi_INCLUDE_DIR
PortMidi_LIBRARIES
)
endif()

View File

@ -26,4 +26,10 @@ if( NOT libmp3lame_FOUND )
message( FATAL_ERROR "Could not find libmp3lame")
endif()
endif()
mark_as_advanced(
libmp3lame_FOUND
libmp3lame_INCLUDE_DIR
libmp3lame_LIBRARIES
)
endif()