Skip to content

Commit 0873037

Browse files
committed
CMakeLists.txt: show USE_FFTW3=ON only if USE_TUI is also enabled
1 parent cbccab5 commit 0873037

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

CMakeLists.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,5 +97,9 @@ install(FILES httping.1 DESTINATION ${CMAKE_INSTALL_MANDIR})
9797
message(STATUS "CMake version: ${CMAKE_VERSION}")
9898
message(STATUS "Use SSL: ${USE_SSL}")
9999
message(STATUS "Use TUI: ${USE_TUI}")
100-
message(STATUS "Use FFTW3: ${USE_FFTW3}")
100+
if(USE_TUI AND USE_FFTW3)
101+
message(STATUS "Use FFTW3: ON")
102+
else()
103+
message(STATUS "Use FFTW3: OFF")
104+
endif()
101105
message(STATUS "Use gettext: ${USE_GETTEXT}")

0 commit comments

Comments
 (0)