sylvan icon indicating copy to clipboard operation
sylvan copied to clipboard

installation in non-standard directory

Open jacopol opened this issue 1 year ago • 1 comments

I am trying to install Sylvan in a non-standard location.

I change CMAKE_INSTALL_PREFIX=/home/user using ccmake However, the change is not reflected in the dependency lace. So make install still tries to install liblace.a in /usr/local (but I don't have the rights).

Current workaround: manually change _deps/lace-build/cmake_install.cmake, adding set(CMAKE_INSTALL_PREFIX "/home/user")

jacopol avatar Jan 09 '24 09:01 jacopol

I was able to successfully install Sylvan (and transitively LACE) to a folder of my choice as follows

mkdir build
cd build
cmake -D CMAKE_INSTALL_PREFIX=<path> ..
make install

SSoelvsten avatar Jan 17 '24 15:01 SSoelvsten