28 lines
388 B
Prolog
28 lines
388 B
Prolog
|
QT -= core
|
||
|
QT -= gui
|
||
|
|
||
|
CONFIG += c++98
|
||
|
|
||
|
TARGET = Threadpool_pthread
|
||
|
CONFIG += console
|
||
|
CONFIG -= app_bundle
|
||
|
CONFIG -= qt
|
||
|
|
||
|
TEMPLATE = app
|
||
|
|
||
|
SOURCES += \
|
||
|
src/LockGuard_pthread.cpp \
|
||
|
src/ThreadPool_pthread.cpp \
|
||
|
examples/sumnums.cpp
|
||
|
|
||
|
HEADERS += \
|
||
|
include/LockGuard_pthread.h \
|
||
|
include/ThreadPool_pthread.h
|
||
|
|
||
|
OTHER_FILES += Makefile
|
||
|
|
||
|
INCLUDEPATH += include
|
||
|
|
||
|
LIBS += -pthread
|
||
|
|