Skip to content
Snippets Groups Projects
test.pro 487 B
Newer Older
  • Learn to ignore specific revisions
  • Kali Kaneko's avatar
    Kali Kaneko committed
    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
    
    
    Kali Kaneko's avatar
    Kali Kaneko committed
    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