mirror of
https://github.com/mutouyun/cpp-ipc.git
synced 2025-12-06 16:56:45 +08:00
23 lines
332 B
Prolog
23 lines
332 B
Prolog
TEMPLATE = app
|
|
|
|
QT += core testlib
|
|
CONFIG += console c++14
|
|
CONFIG -= app_bundle
|
|
|
|
DESTDIR = ../output
|
|
|
|
INCLUDEPATH += \
|
|
../include \
|
|
../src \
|
|
../src/platform
|
|
|
|
HEADERS += \
|
|
../test/test.h
|
|
|
|
SOURCES += \
|
|
../test/main.cpp \
|
|
../test/test_shm.cpp \
|
|
../test/test_circ_elem_array.cpp
|
|
|
|
LIBS += -L$${DESTDIR} -lipc
|