mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-07-20 05:51:44 +12:00
Setting up Qt (#294)
* Initial Qt setup * Fix copy paste derp * Remove QApplication include * Test MacOS Qt build * Update Qt_Build.yml * Update Qt_Build.yml * Properly detect architecture for Qt * Revert back to manual Qt installation to handle DLL nightmares * Install Qt for MacOS CI * AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA * Rename lua.hpp to lua_manager.hpp * Add Windows Qt deploy step * Update Qt_Build.yml * Update Qt_Build.yml * Update Qt_Build.yml * Update Qt_Build.yml * AAAAAAAAAAAAAAAAAAAAAA * Update Qt_Build.yml * AAAAAAAAAAAAAA * Update Qt_Build.yml * Update Qt_Build.yml * Update Qt_Build.yml * Create mac-bundle-qt.sh * Update Qt_Build.yml * Update Qt_Build.yml * Update mac-bundle-qt.sh * Update Qt_Build.yml * Update mac-bundle-qt.sh * Update mac-bundle-qt.sh * Update mac-bundle-qt.sh * Update mac-bundle-qt.sh * Recovering from heartbreak after the dylibbundler fork made me sad * Help * Update Qt_Build.yml * Add mac dynlib manager from MelonDS * Update mac-bundle-qt.sh * Update mac-bundle-qt.sh * Update mac-libs.rb * Update mac-bundle-qt.sh * Create linux-appimage-qt.sh * Update Qt_Build.yml
This commit is contained in:
parent
49368e0db6
commit
89ed176d97
9 changed files with 492 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
#ifdef PANDA3DS_ENABLE_LUA
|
||||
#include "lua.hpp"
|
||||
#include "lua_manager.hpp"
|
||||
|
||||
void LuaManager::initialize() {
|
||||
L = luaL_newstate(); // Open Lua
|
||||
|
|
|
@ -1,7 +1,14 @@
|
|||
#include "emulator.hpp"
|
||||
#ifdef PANDA3DS_FRONTEND_QT
|
||||
#include <QApplication>
|
||||
#endif
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
Emulator emu;
|
||||
#ifdef PANDA3DS_FRONTEND_QT
|
||||
QApplication app(argc, argv);
|
||||
return app.exec();
|
||||
#endif
|
||||
|
||||
emu.initGraphicsContext();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue