Skip to content

DrShahinstein/qtcopy-files

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Drag & Drop Gui

A simple drag and drop application in Qt with C++. This has been actually made for someone's need in real life and then turned into a learning curve for me to see how to use Qt with C++. It may be useful for some fellow so I gathered the code in this repo.

Preview

preview.mp4

Build

See releases if you are interested. If you want to build on your own, make sure you have cmake and qt installed on your machine.

Linux

$ mkdir build
$ cd build/
$ cmake ..

# or

$ ./run

Windows

Using w64devkit is recommended to avoid the very silly windows problems I've gone through.

$ mkdir build
$ cd build/
$ cmake -G "MinGW Makefiles" ..

# or

$ ./run # w64devkit must be used

Release Build

$ mkdir build
$ cd build/
$ cmake -DRELEASE_BUILD=ON ..                      # linux
$ cmake -G "MinGW Makefiles" -DRELEASE_BUILD=ON .. # windows

# or

./run --release-build

# see include/working_dir.h