Prepared project files to accept plugins build

parent d594b24b
SOURCES = src/main.cpp \
src/mainwin.cpp \
src/skylivex.cpp
HEADERS = src/skylivex.h \
src/mainwin.h \
src/pluginsinterfaces.h
QT += core network webkitwidgets widgets
OTHER_FILES += \
gui/splash.html \
gui/img/logo.png
TEMPLATE = subdirs
SUBDIRS = src/skylivex.pro
......@@ -77,6 +77,7 @@ int main(int argc, char *argv[])
skxprocess->start();
// connect core with the mainwin
//QObject::connect(skx, SIGNAL(msgForMainWin(std::string&)), &mainw, SLOT(msgFromCore(std::string&)), Qt::QueuedConnection);
QObject::connect(skx, SIGNAL(msgForMainWin(std::string&)), &mainw, SLOT(msgFromCore(std::string&)));
// and then.. go!
......
SOURCES = main.cpp \
mainwin.cpp \
skylivex.cpp
HEADERS = skylivex.h \
mainwin.h \
pluginsinterfaces.h
QT += core network webkitwidgets widgets
OTHER_FILES += \
../gui/splash.html \
../gui/img/logo.png
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment