1
0
Fork 0

Display that AeonWave is being found, even when cached

This commit is contained in:
Erik Hofman 2020-08-23 19:22:25 +02:00
parent 87a7221051
commit 00c32f5408

View file

@ -18,6 +18,7 @@
if (AAX_LIBRARY AND AAX_INCLUDE_DIR) if (AAX_LIBRARY AND AAX_INCLUDE_DIR)
# in cache already # in cache already
set(AAX_FOUND TRUE) set(AAX_FOUND TRUE)
message(STATUS "Found AeonWave: ${AAX_LIBRARY}")
else() else()
find_path(AAX_INCLUDE_DIR aax/aax.h find_path(AAX_INCLUDE_DIR aax/aax.h
HINTS HINTS
@ -58,13 +59,9 @@ else()
endif() endif()
if (AAX_FOUND) if (AAX_FOUND)
if (NOT Udns_FIND_QUIETLY) message(STATUS "Found AeonWave: ${AAX_LIBRARY}")
message(STATUS "Found AeonWave: ${AAX_LIBRARIES}")
endif ()
else () else ()
if (Udns_FIND_REQUIRED) message(FATAL_ERROR "Could not find AeonWave")
message(FATAL_ERROR "Could not find AeonWave")
endif ()
endif () endif ()
# show the AAX_INCLUDE_DIRS and AAX_LIBRARIES variables only in the advanced view # show the AAX_INCLUDE_DIRS and AAX_LIBRARIES variables only in the advanced view