made libSquish project strictly a static lib

This commit is contained in:
Jack Andersen 2015-07-01 13:52:38 -10:00
parent 7c67895430
commit 1d3ed27636
1 changed files with 4 additions and 25 deletions

View File

@ -1,29 +1,8 @@
TARGET = squish
TEMPLATE = lib
CONFIG += staticlib c++11
TARGET = Squish
CONFIG -= Qt
QT =
include(libSquish.pri)
QT -= gui
CONFIG += staticlib thread
CONFIG += debug_and_release
CONFIG(debug, debug|release) {
unix:TARGET = $$join(TARGET,,,_debug)
}
MOC_DIR = mocs
OBJECTS_DIR = objs
RCC_DIR = rccs
UI_DIR = uics
CONFIG(debug, debug|release) {
unix:MOC_DIR = $$join(MOC_DIR,,,_debug)
unix:OBJECTS_DIR = $$join(OBJECTS_DIR,,,_debug)
unix:RCC_DIR = $$join(RCC_DIR,,,_debug)
unix:UI_DIR = $$join(UI_DIR,,,_debug)
win32:MOC_DIR = $$join(MOC_DIR,,,d)
win32:OBJECTS_DIR = $$join(OBJECTS_DIR,,,d)
win32:RCC_DIR = $$join(RCC_DIR,,,d)
win32:UI_DIR = $$join(UI_DIR,,,d)
}