CMake: Add tools help checks.

Generate help for dumpcap and rawshark only if PCAP_FOUND is true. Note
that we should generate all of the tools help conditionally.

Change-Id: I2145717dee8d8a1ac3d4fd328240f58dbdd07e6c
Reviewed-on: https://code.wireshark.org/review/28785
Petri-Dish: Gerald Combs <gerald@wireshark.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Gerald Combs <gerald@wireshark.org>
This commit is contained in:
Gerald Combs 2018-07-20 16:30:51 -07:00
parent 1ec79c84f0
commit 66935d8baa
1 changed files with 12 additions and 2 deletions

View File

@ -63,15 +63,20 @@ set(COMMON_GRAPHICS
set(WSUG_TOOLS_HELP_COMMANDS
capinfos
dumpcap
editcap
mergecap
rawshark
reordercap
text2pcap
tshark
)
if (PCAP_FOUND)
list(APPEND WSUG_TOOLS_HELP_COMMANDS
dumpcap
rawshark
)
endif(PCAP_FOUND)
# We want the wsug_* targets to depend on the tools help files.
# We want update_tools_help to be an independent target.
# We don't necessarily want to depend on building our executables before
@ -80,6 +85,11 @@ set(WSUG_TOOLS_HELP_FILES)
set(GUIDE_INSTALL_DIRS)
# General help output
# XXX We should probably do this conditionally, e.g. based on
# if (TARGET ${th_command}) ...
# However, if we do so we'll have to make sure this is processed after
# our targets are created.
foreach(th_command ${WSUG_TOOLS_HELP_COMMANDS})
set(th_file ${CMAKE_CURRENT_SOURCE_DIR}/wsug_src/${th_command}-h.txt)
list(APPEND WSUG_TOOLS_HELP_FILES ${th_file})