qzdl icon indicating copy to clipboard operation
qzdl copied to clipboard

Linux

Open PurpBatBoi opened this issue 3 years ago • 3 comments

How do i compile it on Linux?

PurpBatBoi avatar Oct 01 '22 01:10 PurpBatBoi

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.

duganchen avatar Oct 01 '22 04:10 duganchen

please make document on it, im new to linux, cant find CMakeLists.txt file

strikoe avatar Jan 09 '23 12:01 strikoe

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

duganchen avatar Jan 09 '23 18:01 duganchen