cutter/src/cmake/CutterInstallDirs.cmake

10 lines
468 B
CMake
Raw Normal View History

2020-03-15 13:43:42 +00:00
if(WIN32)
set(CMAKE_INSTALL_BINDIR "." CACHE PATH "Executable install directory")
set(CMAKE_INSTALL_INCLUDEDIR "include" CACHE PATH "Include install directory")
set(CMAKE_INSTALL_LIBDIR "lib" CACHE PATH "Library install directory")
elseif(APPLE)
include(GNUInstallDirs) #TODO: use appropriate paths for macOS
else()
include(GNUInstallDirs)
endif()
set(ConfigPackageLocation "${CMAKE_INSTALL_LIBDIR}/Cutter" CACHE PATH "Cmake file install location")