Closed rexim closed 3 weeks ago
This makes the install() function install the file with respect to CMAKE_INSTALL_PREFIX which may not always be /usr/local/ especially when some people install the compiler locally in their $HOME folder.
install()
CMAKE_INSTALL_PREFIX
/usr/local/
$HOME
https://cmake.org/cmake/help/latest/command/install.html
I personally like to set my CMAKE_INSTALL_PREFIX to $HOME/opt/c3, so for me this results in this
$HOME/opt/c3
This PR makes it respect the installation prefix
cc: @goneal26
Thanks!
This makes the
install()
function install the file with respect toCMAKE_INSTALL_PREFIX
which may not always be/usr/local/
especially when some people install the compiler locally in their$HOME
folder.https://cmake.org/cmake/help/latest/command/install.html
I personally like to set my
CMAKE_INSTALL_PREFIX
to$HOME/opt/c3
, so for me this results in thisThis PR makes it respect the installation prefix
cc: @goneal26