1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
# This file contains the main variables shared by executables subprojects
include(../pgmodeler.pri)
unix|windows: LIBS += $$LIBGUI_LIB \
$$LIBCANVAS_LIB \
$$LIBCONNECTOR_LIB \
$$LIBCORE_LIB \
$$LIBPARSERS_LIB \
$$LIBUTILS_LIB
INCLUDEPATH += $$LIBGUI_INC \
$$LIBCANVAS_INC \
$$LIBCONNECTOR_INC \
$$LIBCORE_INC \
$$LIBPARSERS_INC \
$$LIBUTILS_INC
DEPENDPATH += $$LIBGUI_ROOT \
$$LIBCANVAS_ROOT \
$$LIBCONNECTOR_ROOT \
$$LIBCORE_ROOT \
$$LIBPARSERS_ROOT \
$$LIBUTILS_ROOT
|