Backported #6865: Disable websockets command line option
[platform/upstream/freerdp.git] / cmake / FindGSM.cmake
1
2 find_path(GSM_INCLUDE_DIR gsm/gsm.h)
3
4 find_library(GSM_LIBRARY gsm)
5
6 find_package_handle_standard_args(GSM DEFAULT_MSG GSM_INCLUDE_DIR GSM_LIBRARY)
7
8 if(GSM_FOUND)
9         set(GSM_LIBRARIES ${GSM_LIBRARY})
10         set(GSM_INCLUDE_DIRS ${GSM_INCLUDE_DIR})
11 endif()
12
13 mark_as_advanced(GSM_INCLUDE_DIR GSM_LIBRARY)