JustAudio/JustAudio.pro
Maurice O'Neal 73a8c03fa1 Added a logo to the project and changed the "settings" button to "menu"
and added some options to the menu that changes the behaviour of the
app. such as turning on/off the auto playing of files and the directory
and volume control. this is all kept persistent using an IDM formated
file in the app's config directory. still having issues with it not
calculating the durations properly but i now know why. it's because
QMediaPlayer can't calculate the durations of VBR files (variable bit-
rate) properly. other than that, everything seems to be working
perfectly. i'll add more feasures such as a next/previous file button
and a stop button.
2016-10-16 17:04:21 -04:00

37 lines
651 B
Prolog

#-------------------------------------------------
#
# Project created by QtCreator 2016-10-01T14:15:33
#
#-------------------------------------------------
QT += core gui
QT += multimedia
QT += svg
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = JustAudio
TEMPLATE = app
SOURCES += main.cpp\
gui/ui.cpp\
gui/icon.cpp \
io/aud_file.cpp \
io/conf.cpp \
io/idm.cpp \
io/int.cpp
HEADERS += gui/ui.h\
gui/icon.h \
io/aud_file.h \
io/conf.h \
io/idm.h \
io/int.h
RESOURCES += icon_files.qrc
RC_FILE = logo.rc
DISTFILES += app_logo.ico \
logo.rc