Don't use hardcoded paths for installation targets
This commit is contained in:
parent
c9cf6b3f41
commit
2b248a6cef
1 changed files with 4 additions and 4 deletions
|
@ -113,13 +113,13 @@ install(
|
||||||
TARGETS discord-rpc
|
TARGETS discord-rpc
|
||||||
EXPORT "discord-rpc"
|
EXPORT "discord-rpc"
|
||||||
RUNTIME
|
RUNTIME
|
||||||
DESTINATION "bin"
|
DESTINATION "${CMAKE_INSTALL_BINDIR}"
|
||||||
LIBRARY
|
LIBRARY
|
||||||
DESTINATION "lib"
|
DESTINATION "${CMAKE_INSTALL_LIBDIR}"
|
||||||
ARCHIVE
|
ARCHIVE
|
||||||
DESTINATION "lib"
|
DESTINATION "${CMAKE_INSTALL_LIBDIR}"
|
||||||
INCLUDES
|
INCLUDES
|
||||||
DESTINATION "include"
|
DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}"
|
||||||
)
|
)
|
||||||
|
|
||||||
install(
|
install(
|
||||||
|
|
Loading…
Reference in a new issue