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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
#
# This file is part of the xTuple ERP: PostBooks Edition, a free and
# open source Enterprise Resource Planning software suite,
# Copyright (c) 1999-2012 by OpenMFG LLC, d/b/a xTuple.
# It is licensed to you under the Common Public Attribution License
# version 1.0, the full text of which (including xTuple-specific Exhibits)
# is available at www.xtuple.com/CPAL. By using this software, you agree
# to be bound by its terms.
#
TEMPLATE = lib
CONFIG += plugin qt warn_on release
TARGET = $$qtLibraryTarget(csvimpplugin)
DESTDIR = ../plugins
# TODO: why is shared not implied by plugin on mac win32-x-g++?
win32-x-g++ {
CONFIG += shared
}
QT += sql xml xmlpatterns
include(../global.pri)
OBJECTS_DIR = tmp
MOC_DIR = tmp
UI_DIR = tmp
INCLUDEPATH += ../csvimpcommon ../csvimpcommon/images \
$${OPENRPT_DIR}/common $${OPENRPT_DIR}/MetaSQL
win32:INCLUDEPATH += .
DEPENDPATH += $${INCLUDEPATH}
LIBS += -L$${OPENRPT_BLD} -lcommon -lMetaSQL
win32-msvc* {
PRE_TARGETDEPS += ../$${OPENRPT_BLD}/lib/common.lib \
../$${OPENRPT_BLD}/lib/MetaSQL.lib \
} else {
PRE_TARGETDEPS += $${OPENRPT_BLD}/libcommon.a \
$${OPENRPT_BLD}/libMetaSQL.a \
}
FORMS = csvaddmapinputdialog.ui \
csvatlaswindow.ui \
csvimportprogress.ui \
csvtoolwindow.ui \
logwindow.ui \
missingfield.ui \
HEADERS = batchmessagehandler.h \
csvaddmapinputdialog.h \
csvimpplugin.h \
csvatlas.h \
csvatlaswindow.h \
csvdata.h \
csvmap.h \
csvtoolwindow.h \
interactivemessagehandler.h \
logwindow.h \
missingfield.h \
rowcontroller.h \
xabstractmessagehandler.h \
../csvimpcommon/csvimpdata.h \
../csvimpcommon/csvimpplugininterface.h \
SOURCES = batchmessagehandler.cpp \
csvaddmapinputdialog.cpp \
csvimpplugin.cpp \
csvatlas.cpp \
csvatlaswindow.cpp \
csvdata.cpp \
csvmap.cpp \
csvtoolwindow.cpp \
interactivemessagehandler.cpp \
logwindow.cpp \
missingfield.cpp \
rowcontroller.cpp \
xabstractmessagehandler.cpp \
../csvimpcommon/csvimpdata.cpp \
RESOURCES += ../csvimpcommon/csvimp.qrc
|