mirror of
https://github.com/mutouyun/cpp-ipc.git
synced 2025-12-06 16:56:45 +08:00
28 lines
408 B
Prolog
28 lines
408 B
Prolog
TEMPLATE = app
|
|
|
|
QT += core testlib
|
|
QT -= gui
|
|
CONFIG += console
|
|
CONFIG -= app_bundle
|
|
|
|
msvc:QMAKE_CXXFLAGS += /std:c++17
|
|
else:CONFIG += c++1z
|
|
|
|
DESTDIR = ../output
|
|
|
|
INCLUDEPATH += \
|
|
../include \
|
|
../src \
|
|
../src/platform
|
|
|
|
HEADERS += \
|
|
../test/test.h
|
|
|
|
SOURCES += \
|
|
../test/main.cpp \
|
|
../test/test_shm.cpp \
|
|
../test/test_circ.cpp \
|
|
../test/test_ipc.cpp
|
|
|
|
LIBS += -L$${DESTDIR} -lipc
|