1
0
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:
Ron Isaacson 2020-06-28 01:21:06 -04:00
parent 64270ac558
commit acc975d39f

View File

@ -5,6 +5,10 @@ project("SoftEther VPN"
LANGUAGES C
)
if(UNIX)
set(CMAKE_INSTALL_PREFIX "/usr")
endif()
set(TOP_DIRECTORY ${CMAKE_SOURCE_DIR})
set(BUILD_DIRECTORY ${TOP_DIRECTORY}/build)