I am deploying a Qt application for Windows 10 and when I try to run it outside of Qt Creator I get an error (0xc000a200).
Based on my research this looks like a windows 8+ specific error involving "AppContainers".
I have added LTLINKOPTS = $(LTLINKOPTS) "/APPCONTAINER"
to my .pro file, and /APPCONTAINER to the LFLAGS in the makefile, neither has solved the issue.
Additionally, I did run windeployqt before this, and all qt dlls are present in the run directory.
.pro:
win32 {
INCLUDEPATH += C:/boost/
LIBS += -LC:/boost/stage/lib
Boost_USE_STATIC_LIBS = ON
LTLINKOPTS = $(LTLINKOPTS) "/APPCONTAINER"
}
Would really appreciate any guidance - this is my first windows Qt deployment.