feature/test #9
@ -1,16 +1,17 @@
|
||||
QT += core widgets gui multimedia
|
||||
|
||||
SUBDIRS += compro
|
||||
|
||||
CONFIG += c++17
|
||||
|
||||
SOURCES += \
|
||||
compromain.cpp \
|
||||
main.cpp \
|
||||
mainwindow.cpp
|
||||
|
||||
HEADERS += \
|
||||
mainwindow.h
|
||||
|
||||
FORMS += \
|
||||
mainwindow.ui
|
||||
|
||||
LIBS += \
|
||||
-L$$OUT_PWD/../../libs/ -lcompression \
|
||||
-L$$PWD/../../third_party/xbox_sdk/lib -lxcompress64
|
||||
@ -23,6 +24,3 @@ DEPENDPATH += \
|
||||
$$PWD/../../libs/compression \
|
||||
$$PWD/../../third_party/xbox_sdk/include
|
||||
|
||||
FORMS += \
|
||||
mainwindow.ui
|
||||
|
||||
|
||||
11
tools/compro/main.cpp
Normal file
11
tools/compro/main.cpp
Normal file
@ -0,0 +1,11 @@
|
||||
#include "mainwindow.h"
|
||||
|
||||
#include <QApplication>
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
QApplication a(argc, argv);
|
||||
MainWindow w;
|
||||
w.show();
|
||||
return a.exec();
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user