xcursor-viewer icon indicating copy to clipboard operation
xcursor-viewer copied to clipboard

Add basic build instructions

Open aggregate1166877 opened this issue 1 year ago • 1 comments

Would it be possible to add basic build instructions to the readme? Doesn't need to be anything too in-depth; just a one-liner for the needed build command.

I assume this is built with either make or cmake, but neither work for me:

$ make
make: *** No targets specified and no makefile found.  Stop.
$ cmake
Usage

  cmake [options] <path-to-source>
  cmake [options] <path-to-existing-build>

aggregate1166877 avatar Apr 16 '23 04:04 aggregate1166877

Seems I've figured it out, at least Linux Mint:

# Install dependencies:
apt install build-essential qt5-default make cmake

# Prep and build:
cmake .
make

# Run:
./xcursor-viewer

Works very nicely :)

aggregate1166877 avatar Apr 16 '23 05:04 aggregate1166877