feature/test #9

Merged
njohnson merged 318 commits from feature/test into main 2025-09-07 12:35:21 -04:00
2 changed files with 15 additions and 6 deletions
Showing only changes of commit a7904ca74e - Show all commits

View File

@ -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
View 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();
}