blob: e731e2be9344553b64b4cc9548f485380f8b270f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
TEMPLATE = app
TARGET = test_ui
CONFIG += warn_on qmltestcase
SOURCES += \
tests/test_ui.cpp \
gui/qjsonmodel.cpp \
gui/handlers.cpp
HEADERS += \
lib/libgoshim.h \
gui/qjsonmodel.h \
gui/handlers.h
LIBS += -L../lib -lgoshim -lpthread
RESOURCES += tests/tests.qrc
DESTDIR = build
OBJECTS_DIR = build/.obj
RCC_DIR = build/.rcc
UI_DIR = build/.ui
Release:DESTDIR = build
Release:OBJECTS_DIR = build/.obj
Release:RCC_DIR = build/.rcc
Release:UI_DIR = build/.ui
|