mirror of
https://github.com/mutouyun/cpp-ipc.git
synced 2025-12-07 01:06:45 +08:00
39 lines
634 B
Prolog
39 lines
634 B
Prolog
TEMPLATE = app
|
|
|
|
QT += core testlib
|
|
QT -= gui
|
|
|
|
CONFIG += console
|
|
CONFIG += c++14 c++1z # may be useless
|
|
CONFIG -= app_bundle
|
|
|
|
DESTDIR = ../output
|
|
|
|
!msvc:QMAKE_CXXFLAGS += \
|
|
-Wno-attributes \
|
|
-Wno-missing-field-initializers \
|
|
-Wno-unused-variable \
|
|
-Wno-unused-function
|
|
|
|
INCLUDEPATH += \
|
|
../test \
|
|
../test/capo \
|
|
../include \
|
|
../src
|
|
|
|
HEADERS += \
|
|
../test/test.h
|
|
|
|
SOURCES += \
|
|
../test/main.cpp \
|
|
../test/test_shm.cpp \
|
|
../test/test_mem.cpp \
|
|
../test/test_circ.cpp \
|
|
../test/test_waiter.cpp \
|
|
../test/test_ipc.cpp
|
|
|
|
LIBS += \
|
|
-L$${DESTDIR} -lipc
|
|
|
|
unix:LIBS += -lrt -lpthread
|