mirror of
https://github.com/mutouyun/cpp-ipc.git
synced 2025-12-06 16:56:45 +08:00
31 lines
468 B
Prolog
31 lines
468 B
Prolog
TEMPLATE = app
|
|
|
|
QT += core testlib
|
|
QT -= gui
|
|
CONFIG += console c++1z
|
|
CONFIG -= app_bundle
|
|
|
|
DESTDIR = ../output
|
|
|
|
msvc:QMAKE_CXXFLAGS += /std:c++17
|
|
else:QMAKE_CXXFLAGS += -std=gnu++1z
|
|
|
|
INCLUDEPATH += \
|
|
../test \
|
|
../test/capo \
|
|
../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
|