You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You may create the .deb file by running cpack command inside the build directory. On my debian, cpack is installed with the cmake package.
so the step to have your .deb:
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
make
cpack
then you may install the vkvg.deb file with:
dpkg -i vkvg_0.3.0.deb
If install is complaining about missing packages, you may do:
sudo apt install -f
On linux, the libc6-dev package must be installed (dependency is not configured by the .deb)
When I make a release, I try to upload a .deb package that should work on both debian and ubuntu.
It would be good if there was a .deb package for Debian or Ubuntu.
I guess in the Ubuntu version, it makes it possible to have a PPA which makes it much easier to try out vkvg.
The text was updated successfully, but these errors were encountered: