source: trunk/src/corelib/thread/thread.pri@ 437

Last change on this file since 437 was 69, checked in by Dmitry A. Kuminov, 16 years ago

corelib: OS/2: Ported QThread (#13).

File size: 1020 bytes
Line 
1# Qt core thread module
2
3# public headers
4HEADERS += thread/qmutex.h \
5 thread/qreadwritelock.h \
6 thread/qsemaphore.h \
7 thread/qthread.h \
8 thread/qthreadstorage.h \
9 thread/qwaitcondition.h \
10 thread/qatomic.h
11
12# private headers
13HEADERS += thread/qmutex_p.h \
14 thread/qmutexpool_p.h \
15 thread/qorderedmutexlocker_p.h \
16 thread/qreadwritelock_p.h \
17 thread/qthread_p.h
18
19SOURCES += thread/qatomic.cpp \
20 thread/qmutex.cpp \
21 thread/qreadwritelock.cpp \
22 thread/qmutexpool.cpp \
23 thread/qsemaphore.cpp \
24 thread/qthread.cpp \
25 thread/qthreadstorage.cpp
26
27unix:SOURCES += thread/qmutex_unix.cpp \
28 thread/qthread_unix.cpp \
29 thread/qwaitcondition_unix.cpp
30
31win32:SOURCES += thread/qmutex_win.cpp \
32 thread/qthread_win.cpp \
33 thread/qwaitcondition_win.cpp
34
35os2:SOURCES += thread/qmutex_os2.cpp \
36 thread/qthread_os2.cpp \
37 thread/qwaitcondition_os2.cpp
Note: See TracBrowser for help on using the repository browser.