WIP: more refactoring.

This commit is contained in:
Matthias Koefferlein 2019-07-06 09:15:33 +02:00
parent 0595ec2e0f
commit a179705a03
4 changed files with 6 additions and 3 deletions

View File

@ -2,6 +2,7 @@
TL_INC = $$PWD/tl/tl
DB_INC = $$PWD/db/db
DRC_INC = $$PWD/drc/drc
LVS_INC = $$PWD/lvs/lvs
EDT_INC = $$PWD/edt/edt
EXT_INC = $$PWD/ext/ext
GSI_INC = $$PWD/gsi/gsi

View File

@ -44,6 +44,7 @@
#include "imgForceLink.h"
#if defined(HAVE_RUBY)
#include "drcForceLink.h"
#include "lvsForceLink.h"
#endif
#if defined(HAVE_QTBINDINGS)

View File

@ -67,6 +67,7 @@
#include "rdbForceLink.h"
#if defined(HAVE_RUBY) && defined(HAVE_QT)
#include "drcForceLink.h"
#include "lvsForceLink.h"
#endif
static int main_cont (int &argc, char **argv);

View File

@ -37,9 +37,9 @@ equals(HAVE_PYTHON, "1") {
!equals(HAVE_QT, "0") {
equals(HAVE_RUBY, "1") {
# DRC is only available with Ruby
INCLUDEPATH += $$DRC_INC
DEPENDPATH += $$DRC_INC
LIBS += -lklayout_drc
INCLUDEPATH += $$DRC_INC $$LVS_INC
DEPENDPATH += $$DRC_INC $$LVS_INC
LIBS += -lklayout_drc -lklayout_lvs
}
}