mirror of
https://github.com/jaredtao/TaoQuick.git
synced 2025-01-19 20:22:56 +08:00
26 lines
552 B
Plaintext
26 lines
552 B
Plaintext
!build_TaoCommon_lib:{
|
|
DEFINES +=TaoCommon_NO_LIB
|
|
}
|
|
|
|
INCLUDEPATH += $$PWD \
|
|
$$PWD/Common \
|
|
$$PWD/Logger \
|
|
$$PWD/Thread
|
|
|
|
HEADERS += \
|
|
$$PWD/Common/filereadwrite.h \
|
|
$$PWD/Common/objectmap.h \
|
|
$$PWD/Common/subject.h \
|
|
$$PWD/Common/package.h \
|
|
$$PWD/Logger/loggertemplate.h \
|
|
$$PWD/Logger/logger.h \
|
|
$$PWD/Thread/threadcommon.h \
|
|
$$PWD/Thread/threadpool.h \
|
|
$$PWD/Thread/threadworkercontroller.h \
|
|
$$PWD/taocommonglobal.h
|
|
|
|
SOURCES += \
|
|
$$PWD/Logger/logger.cpp \
|
|
$$PWD/Thread/threadpool.cpp
|
|
|