Sharedlib instead of executable file on ubuntu
-
Hi to everyone,
i've finished my qt project and i want to create an executable file.
I'm using Qt 5.9.1 (qt creator 4.3.1).If a Run the project it produces me a sharedlib as main file, so i can run it calling from a terminal and it works but i can't click on the app icon in order to run it.
is it my mistake?
Thank you
-
Hi,
What do you mean by "it produces a shared lib as main file" ?
-
Hi
Can you post your .pro file? -
QT += core gui
QT += chartsgreaterThan(QT_MAJOR_VERSION, 4): QT += widgets
QT+=printsupportTARGET = Interfaccia
TEMPLATE = appDEFINES += QT_DEPRECATED_WARNINGS
SOURCES +=
main.cpp
mainwindow.cpp
mylabel.cpp
../build-Interfaccia-Desktop_Qt_5_9_1_GCC_64bit-Debug/qcustomplot/qcustomplot.cpp
analizzatore.cpp
particle.cppHEADERS +=
mainwindow.h
mylabel.h
../build-Interfaccia-Desktop_Qt_5_9_1_GCC_64bit-Debug/qcustomplot/qcustomplot.h
analizzatore.h
datastore.h
datastore.h
particle.hFORMS +=
mainwindow.ui -
Looks like your double clicking on the executable and trying to run it. Are you getting the 'library not found' error ? if that is the case, Qt libraries may not be in the path. Please check the path and fix it
Qn : Are you able to run your application from Qt Creator ?
-
@FED27 If you want your app to be runnable outside of QtCreator (or on other machines) you need to deploy it first.
See http://doc.qt.io/qt-5/linux-deployment.html -
Hi,
As silly as it may sound, did you install all of Qt components ?
-
Are you using a project template ?
-
Glad you found out and thanks for sharing !
Since you have it working now, please mark the thread as solved using the "Topic Tools" button so that other forum members may know what you are talking about.