I create a new project and select Library->C++ Library. then select Statically Linked Library and simply next other pages in wizard. After this when i try to build this new project, no output files (like .a) are produced.
This is my .pro file content:
#-------------------------------------------------
#
# Project created by QtCreator 2015-11-23T03:48:12
#
#-------------------------------------------------
QT -= gui
TARGET = ssss
TEMPLATE = lib
CONFIG += staticlib
SOURCES += ssss.cpp
HEADERS += ssss.h
unix {
target.path = /usr/lib
INSTALLS += target
}
I am using Qt 5.4.2 and Qt Creator 3.4.1