aboutsummaryrefslogtreecommitdiffstats
path: root/cmake/modules/FindAsn2Wrs.cmake
blob: a618649f25b7d9fa6493a5d091926931c325fbde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#
# Look for the asn2wrs.py utility
#

find_program( ASN2WRS_EXECUTABLE
  NAMES
    asn2wrs.py
  HINTS
    # First try to find it in wireshark sources
    ${CMAKE_SOURCE_DIR}/tools
)

include( FindPackageHandleStandardArgs )
find_package_handle_standard_args( ASN2WRS DEFAULT_MSG ASN2WRS_EXECUTABLE )

mark_as_advanced( ASN2WRS_EXECUTABLE )