mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2025-04-03 18:00:08 +03:00
Install packages in /usr, not /usr/local
See: https://www.tldp.org/HOWTO/HighQuality-Apps-HOWTO/fhs.html. To comply with this guidance and the underlying FHS, packaged software should be installed in /usr, not /usr/local.
This commit is contained in:
parent
64270ac558
commit
acc975d39f
@ -5,6 +5,10 @@ project("SoftEther VPN"
|
|||||||
LANGUAGES C
|
LANGUAGES C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if(UNIX)
|
||||||
|
set(CMAKE_INSTALL_PREFIX "/usr")
|
||||||
|
endif()
|
||||||
|
|
||||||
set(TOP_DIRECTORY ${CMAKE_SOURCE_DIR})
|
set(TOP_DIRECTORY ${CMAKE_SOURCE_DIR})
|
||||||
set(BUILD_DIRECTORY ${TOP_DIRECTORY}/build)
|
set(BUILD_DIRECTORY ${TOP_DIRECTORY}/build)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user