cpp-ipc/build/src.pro
2018-12-12 16:14:04 +08:00

50 lines
686 B
Prolog

TEMPLATE = lib
TARGET = ipc
CONFIG -= qt
msvc:QMAKE_CXXFLAGS += /std:c++17
else:CONFIG += c++1z
DEFINES += __IPC_LIBRARY__
DESTDIR = ../output
INCLUDEPATH += \
../include \
../src \
../src/platform
HEADERS += \
../include/export.h \
../include/shm.h \
../include/circ_elem_array.h \
../include/circ_queue.h \
../include/ipc.h \
../include/def.h \
../include/rw_lock.h
SOURCES += \
../src/shm.cpp \
../src/ipc.cpp
unix {
SOURCES += \
../src/platform/shm_linux.cpp
LIBS += -lrt
target.path = /usr/lib
INSTALLS += target
} # unix
else:win32 {
SOURCES += \
../src/platform/shm_win.cpp
LIBS += -lKernel32
} # else:win32