Skip to content

Instantly share code, notes, and snippets.

@alexmi256
Last active May 4, 2020 00:53
Show Gist options
  • Save alexmi256/3a973fa59ab35d0ebaa987ab026fada2 to your computer and use it in GitHub Desktop.
Save alexmi256/3a973fa59ab35d0ebaa987ab026fada2 to your computer and use it in GitHub Desktop.
Install Rapidcopy

Install latest XXHash

git clone https://github.com/Microsoft/vcpkg.git cd vcpkg/ ./bootstrap-vcpkg.sh ./vcpkg integrate install ./vcpkg install xxhash

Install Requirements

sudo apt install build-essential libattr1-dev libbsd-dev libacl1-dev libgl1-mesa-dev libfontconfig1 qtcreator qt5-default qtmultimedia5-dev

Change Project Library Location

In Ubuntu 20.04 Change:

diff --git a/rapidcopy_main.pro b/rapidcopy_main.pro
index 8c342ad..3807d95 100644
--- a/rapidcopy_main.pro
+++ b/rapidcopy_main.pro
@@ -24,7 +24,7 @@ if(CentOS7){
        DEFINES += _CENTOS7
 }
 else{
-       LIBS += /usr/lib/libacl.so /usr/lib/x86_64-linux-gnu/libbsd.so
+        LIBS += /usr/lib/x86_64-linux-gnu/libacl.so /usr/lib/x86_64-linux-gnu/libbsd.so
        DEFINE += _UBUNTU
 }

Or it might work with symlinks ln -s /usr/lib/x86_64-linux-gnu/libacl.so /usr/lib/libacl.so

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment