while trying to compile using qtsdk with qtcreator gives following errors, seems like we have some missing files here, could you please add them?
(tested at revision 3)
In file included from ..\mux\fshellplugin.cpp:18:
..\mux\/fshellplugin.h:23:37: error: extensionsystem/iplugin.h: No such file or directory
..\mux\/fshellplugin.h:24:30: error: coreplugin/imode.h: No such file or directory
..\mux\fshellplugin.cpp:23:30: error: coreplugin/icore.h: No such file or directory
..\mux\fshellplugin.cpp:24:33: error: coreplugin/icontext.h: No such file or directory
..\mux\fshellplugin.cpp:25:52: error: coreplugin/actionmanager/actionmanager.h: No such file or directory
..\mux\fshellplugin.cpp:26:46: error: coreplugin/actionmanager/command.h: No such file or directory
..\mux\fshellplugin.cpp:27:54: error: coreplugin/actionmanager/actioncontainer.h: No such file or directory
..\mux\fshellplugin.cpp:28:38: error: coreplugin/coreconstants.h: No such file or directory
In file included from ..\mux\fshellplugin.cpp:18:
..\mux\/fshellplugin.h:33: error: 'ExtensionSystem' has not been declared
..\mux\/fshellplugin.h:33: error: expected '{' before 'IPlugin'
..\mux\/fshellplugin.h:34: error: invalid type in declaration before '{' token
..\mux\/fshellplugin.h:34: warning: extended initializer lists only available with -std=c++0x or -std=gnu++0x
..\mux\/fshellplugin.h:35: error: 'Q_OBJECT' was not declared in this scope
..\mux\/fshellplugin.h:37: error: expected '}' before 'public'
..\mux\/fshellplugin.h:37: error: expected ',' or ';' before 'public'
..\mux\/fshellplugin.h:39: error: expected constructor, destructor, or type conversion before ';' token
..\mux\/fshellplugin.h:41: error: ISO C++ forbids declaration of 'QStringList' with no type
..\mux\/fshellplugin.h:41: error: expected ',' or '...' before '&' token
..\mux\/fshellplugin.h:43: error: 'ShutdownFlag' does not name a type
..\mux\/fshellplugin.h:45: error: expected unqualified-id before 'private'
..\mux\/fshellplugin.h:51: error: expected declaration before '}' token
mingw32-make[1]: *** [release/fshellplugin.o] Error 1
mingw32-make: *** [release] Error 2
hmm those files aren't part of fshell/muxcons, they're part of the qt creator source tree. Where is the "mux" directory relative to the creator source code? For it to build cleanly it needs to be in <creatorsrc>/src/plugins/ and to be included in plugins.pro. If it's outside the creator source tree and you want to build it separately, you'll need to modify fshell.pro and uncomment and maybe update the QTCREATOR_SOURCES lines (lines 24-25). But I've had problems getting that to work in the past, it doesn't appear to be a very supported setup to build plugins like that.
Also please note that if you only wanted to build the standalone application, you need to build src/muxcons.pro, not fshell.pro.