forked from qt-creator/qt-creator
22 lines
424 B
Prolog
22 lines
424 B
Prolog
|
|
!win32: error("process_ctrlc_stub is Windows only")
|
||
|
|
|
||
|
|
include(../../../qtcreator.pri)
|
||
|
|
|
||
|
|
TEMPLATE = app
|
||
|
|
TARGET = qtcreator_ctrlc_stub
|
||
|
|
DESTDIR = $$IDE_LIBEXEC_PATH
|
||
|
|
|
||
|
|
QT =
|
||
|
|
CONFIG += console warn_on
|
||
|
|
|
||
|
|
SOURCES += process_ctrlc_stub.cpp
|
||
|
|
LIBS += -luser32 -lshell32
|
||
|
|
|
||
|
|
build_all:!build_pass {
|
||
|
|
CONFIG -= build_all
|
||
|
|
CONFIG += release
|
||
|
|
}
|
||
|
|
|
||
|
|
target.path = /bin # FIXME: libexec, more or less
|
||
|
|
INSTALLS += target
|