cpp-ipc/build/test.pro

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