Backported #6865: Disable websockets command line option
[platform/upstream/freerdp.git] / cmake / SetFreeRDPCMakeInstallDir.cmake
1 function(SetFreeRDPCMakeInstallDir SETVAR subdir)
2         if(FREEBSD)
3                 set(${SETVAR} "${CMAKE_INSTALL_DATAROOTDIR}/cmake/Modules/${subdir}" PARENT_SCOPE)
4         else()
5                 set(${SETVAR} "${CMAKE_INSTALL_LIBDIR}/cmake/${subdir}" PARENT_SCOPE)
6         endif()
7 endfunction()