freerdp2/cmake/SetFreeRDPCMakeInstallDir.cmake
2018-11-21 15:18:12 +01:00

8 lines
251 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()