qzdl
qzdl copied to clipboard
Linux
How do i compile it on Linux?
We should probably think about documenting this.
Assuming you have the dependencies (should just be qt5) and build environment (g++ and cmake):
mkdir build
cmake ..
This is how you compile any cmake-based project, which this is.
That will produce a file named "zdl" in the build directory. You just run that.
please make document on it, im new to linux, cant find CMakeLists.txt file
I'm going to just write out a sequence of commands without checking them. They start with "checking out" (as we say) the source code, and end with actually running the executable:
git checkout https://github.com/qbasicer/qzdl.git
cd qzdl
mkdir build
cd build
cmake ..
./zdl