feature/test #9
@ -1,16 +1,17 @@
|
|||||||
QT += core widgets gui multimedia
|
QT += core widgets gui multimedia
|
||||||
|
|
||||||
SUBDIRS += compro
|
|
||||||
|
|
||||||
CONFIG += c++17
|
CONFIG += c++17
|
||||||
|
|
||||||
SOURCES += \
|
SOURCES += \
|
||||||
compromain.cpp \
|
main.cpp \
|
||||||
mainwindow.cpp
|
mainwindow.cpp
|
||||||
|
|
||||||
HEADERS += \
|
HEADERS += \
|
||||||
mainwindow.h
|
mainwindow.h
|
||||||
|
|
||||||
|
FORMS += \
|
||||||
|
mainwindow.ui
|
||||||
|
|
||||||
LIBS += \
|
LIBS += \
|
||||||
-L$$OUT_PWD/../../libs/ -lcompression \
|
-L$$OUT_PWD/../../libs/ -lcompression \
|
||||||
-L$$PWD/../../third_party/xbox_sdk/lib -lxcompress64
|
-L$$PWD/../../third_party/xbox_sdk/lib -lxcompress64
|
||||||
@ -23,6 +24,3 @@ DEPENDPATH += \
|
|||||||
$$PWD/../../libs/compression \
|
$$PWD/../../libs/compression \
|
||||||
$$PWD/../../third_party/xbox_sdk/include
|
$$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