22b4de90b8
- Use QMake instead of CMake. - Use QLocalSocket/QLocalServer to access Win32 named pipes.
27 lines
411 B
Prolog
27 lines
411 B
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2011-10-30T22:44:39
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core
|
|
|
|
QT -= gui
|
|
|
|
QT += network
|
|
|
|
TARGET = Agent
|
|
CONFIG += console
|
|
CONFIG -= app_bundle
|
|
|
|
TEMPLATE = app
|
|
|
|
|
|
SOURCES += main.cc \
|
|
Agent.cc \
|
|
../Shared/DebugClient.cc
|
|
|
|
HEADERS += \
|
|
Agent.h \
|
|
../Shared/DebugClient.h
|