Skip to content

Commit

Permalink
🐛 make sure find_package example can run without segfault
Browse files Browse the repository at this point in the history
  • Loading branch information
OlivierLDff committed Aug 21, 2024
1 parent 77082aa commit 4573690
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/FindPackageTest/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,13 @@
// SOFTWARE.

#include <Qaterial/Qaterial.hpp>
#include <QtGui/QGuiApplication>

int main()
int main(int argc, char* argv[])
{
QGuiApplication app(argc, argv);
qaterial::registerQmlTypes();
qaterial::loadQmlResources();

return 0;
}

0 comments on commit 4573690

Please sign in to comment.