src/corelib/thread/thread.pri
changeset 0 1918ee327afb
equal deleted inserted replaced
-1:000000000000 0:1918ee327afb
       
     1 # Qt core thread module
       
     2 
       
     3 # public headers
       
     4 HEADERS += 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
       
    13 HEADERS += 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 
       
    19 SOURCES += 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 
       
    27 unix:SOURCES += thread/qmutex_unix.cpp \
       
    28                 thread/qthread_unix.cpp \
       
    29 		thread/qwaitcondition_unix.cpp
       
    30 
       
    31 win32:SOURCES += thread/qmutex_win.cpp \
       
    32                  thread/qthread_win.cpp \
       
    33 		 thread/qwaitcondition_win.cpp