We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbccab5 commit 0873037Copy full SHA for 0873037
1 file changed
CMakeLists.txt
@@ -97,5 +97,9 @@ install(FILES httping.1 DESTINATION ${CMAKE_INSTALL_MANDIR})
97
message(STATUS "CMake version: ${CMAKE_VERSION}")
98
message(STATUS "Use SSL: ${USE_SSL}")
99
message(STATUS "Use TUI: ${USE_TUI}")
100
-message(STATUS "Use FFTW3: ${USE_FFTW3}")
+if(USE_TUI AND USE_FFTW3)
101
+ message(STATUS "Use FFTW3: ON")
102
+else()
103
+ message(STATUS "Use FFTW3: OFF")
104
+endif()
105
message(STATUS "Use gettext: ${USE_GETTEXT}")
0 commit comments