You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
515 B
31 lines
515 B
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2013-08-18T13:54:44
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core gui
|
|
|
|
TARGET = tcutils
|
|
TEMPLATE = app
|
|
|
|
|
|
SOURCES += main.cpp\
|
|
mainwindow.cpp \
|
|
utils.cpp
|
|
|
|
HEADERS += mainwindow.h \
|
|
utils.h
|
|
|
|
FORMS += mainwindow.ui
|
|
|
|
# added by LK Rashinkar
|
|
INCLUDEPATH += ../xrdpapi
|
|
|
|
LIBS += -Wl,-rpath
|
|
LIBS += -Wl,/usr/local/lib/xrdp
|
|
LIBS += -L../xrdpapi/.libs -lxrdpapi
|
|
|
|
RESOURCES += \
|
|
resources.qrc
|