mirror of
https://github.com/FreeRDP/FreeRDP.git
synced 2025-06-03 00:00:20 +00:00
8 lines
258 B
CMake
8 lines
258 B
CMake
function(SetFreeRDPCMakeInstallDir SETVAR subdir)
|
|
if(FREEBSD)
|
|
set(${SETVAR} "${CMAKE_INSTALL_DATAROOTDIR}/cmake/Modules/${subdir}" PARENT_SCOPE)
|
|
else()
|
|
set(${SETVAR} "${CMAKE_INSTALL_LIBDIR}/cmake/${subdir}" PARENT_SCOPE)
|
|
endif()
|
|
endfunction()
|