summaryrefslogtreecommitdiffstats
path: root/cmake/SetFreeRDPCMakeInstallDir.cmake
blob: 125e2f42db0448e2967eeb05730e17ebfa7d300a (plain)
1
2
3
4
5
6
7
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()