Nitpicks with StudioWindow + CMake fix

This commit is contained in:
rjindael 2023-07-06 22:56:08 -07:00
parent e9ab162b56
commit f10134cd57
No known key found for this signature in database
GPG Key ID: D069369C906CCF31
2 changed files with 6 additions and 5 deletions

View File

@ -33,8 +33,8 @@ add_executable(server
)
qt_add_executable(studio
src/client/studio/studiowindow.cpp
src/client/studio/studiowindow.hpp
src/client/studio/StudioWindow.cpp
src/include/client/studio/StudioWindow.hpp
src/client/studio/main.cpp
)

View File

@ -1,14 +1,15 @@
#include <stdio.h>
#include <QApplication>
#include "studiowindow.hpp"
#include <client/studio/StudioWindow.hpp>
int main(int argc, char** argv)
{
QApplication a(argc, argv);
QApplication app(argc, argv);
StudioWindow window = StudioWindow();
window.show();
return a.exec();
return app.exec();
}