After running packer on windows, I get the follwoing directory structure:
.
├── config.json
└── win32
├── NvmGui
│ ├── platforms
│ ├── qode.json
│ └── styles
└── build
└── NvmGui
├── D3Dcompiler_47.dll
├── Qt5Core.dll
├── Qt5Gui.dll
├── Qt5Widgets.dll
├── dist
│ ├── 08ef36629f2fe40bdcbe135ae303d949.jpg
│ ├── index.js
│ └── nodegui_core-1adbd57cebe81664d2e1405d9c9f704f.node
├── imageformats
│ ├── qgif.dll
│ ├── qico.dll
│ └── qjpeg.dll
├── libEGL.dll
├── libGLESV2.dll
├── platforms
│ └── qwindows.dll
├── qode.exe
├── qode.json
└── styles
└── qwindowsvistastyle.dll
How do I run the application? I tried running qode.exe which did nothing, I also tried running qode.exe and passing the path of the built index.js file as an argument, this also did nothing.
Everything works fine in dev mode.
I'm new to QT and native development in general so my next question is how should I go about creating a windows installer, but I'm sure I can figure that out myself when I can run the application!
After running packer on windows, I get the follwoing directory structure:
How do I run the application? I tried running
qode.exewhich did nothing, I also tried runningqode.exeand passing the path of the builtindex.jsfile as an argument, this also did nothing.Everything works fine in dev mode.
I'm new to QT and native development in general so my next question is how should I go about creating a windows installer, but I'm sure I can figure that out myself when I can run the application!