Compro changes.

This commit is contained in:
= 2025-07-10 00:06:37 -04:00
parent 6cc3d71acf
commit a7904ca74e
2 changed files with 15 additions and 6 deletions

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