mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
79bc04d87e
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19408 a592a061-630c-0410-9148-cb99ea01b6c8
60 lines
1.1 KiB
Prolog
60 lines
1.1 KiB
Prolog
|
|
include(../config.pri)
|
|
|
|
TEMPLATE = app
|
|
|
|
TARGET = ../bin/tex2lyx$${DEBUGSUFFIX}
|
|
|
|
QT =
|
|
|
|
LIBS += -L../lib
|
|
|
|
LIBS += -llyxsupport$${DEBUGSUFFIX}
|
|
LIBS += -llyxboost$${DEBUGSUFFIX}
|
|
|
|
LIBS += -llyxmathed$${DEBUGSUFFIX}
|
|
LIBS += -llyxinsets$${DEBUGSUFFIX}
|
|
LIBS += -llyxgraphics$${DEBUGSUFFIX}
|
|
LIBS += -llyxfrontends$${DEBUGSUFFIX}
|
|
LIBS += -llyxcontrollers$${DEBUGSUFFIX}
|
|
LIBS += -llyxqt4$${DEBUGSUFFIX}
|
|
LIBS += -llyxsrc$${DEBUGSUFFIX}
|
|
|
|
INC += src
|
|
INC += boost
|
|
|
|
HPP += Context.h
|
|
HPP += Font.h
|
|
HPP += Parser.h
|
|
HPP += Spacing.h
|
|
HPP += pch.h
|
|
HPP += tex2lyx.h
|
|
|
|
CPP += Context.cpp
|
|
CPP += Font.cpp
|
|
CPP += Parser.cpp
|
|
CPP += boost.cpp
|
|
CPP += gettext.cpp
|
|
CPP += lengthcommon.cpp
|
|
CPP += math.cpp
|
|
CPP += preamble.cpp
|
|
CPP += table.cpp
|
|
CPP += tex2lyx.cpp
|
|
CPP += text.cpp
|
|
|
|
# linked files
|
|
#HPP += ../Layout.h
|
|
#HPP += ../TextClass.h
|
|
|
|
#CPP += ../FloatList.cpp
|
|
#CPP += ../Floating.cpp
|
|
#CPP += ../Counters.cpp
|
|
#CPP += ../Layout.cpp
|
|
#CPP += ../TextClass.cpp
|
|
#CPP += ../Lexer.cpp
|
|
|
|
|
|
for(FILE,CPP) { SOURCES += $${BUILD_BASE_SOURCE_DIR}/src/tex2lyx/$${FILE} }
|
|
for(FILE,HPP) { HEADERS += $${BUILD_BASE_SOURCE_DIR}/src/tex2lyx/$${FILE} }
|
|
for(PATH,INC) { INCLUDEPATH += $${BUILD_BASE_SOURCE_DIR}/$${PATH} }
|