mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-11-16 10:35:49 +08:00
24 lines
506 B
Prolog
24 lines
506 B
Prolog
|
include( ../config.pri )
|
||
|
|
||
|
TARGET = example
|
||
|
TEMPLATE = app
|
||
|
CONFIG += warn_on release thread
|
||
|
win32: CONFIG += console
|
||
|
|
||
|
MOC_DIR = ../tmp
|
||
|
OBJECTS_DIR = ../tmp
|
||
|
DESTDIR = ./
|
||
|
|
||
|
INCLUDEPATH += ../src
|
||
|
unix: INCLUDEPATH += /usr/local/include/libEMF
|
||
|
|
||
|
LIBS += ../libEmfEngine.a
|
||
|
|
||
|
win32: LIBS += -lgdi32
|
||
|
unix: LIBS += /usr/local/lib/libEMF.a
|
||
|
|
||
|
HEADERS = renderarea.h \
|
||
|
pixmaps.h
|
||
|
SOURCES = main.cpp \
|
||
|
renderarea.cpp
|