Imported Upstream version 1.8.15
[platform/upstream/doxygen.git] / qtools / CMakeLists.txt
1 include_directories(.)
2
3 list(APPEND qtools_src
4 qbuffer.cpp
5 qcollection.cpp
6 qcstring.cpp
7 qdatastream.cpp
8 qdatetime.cpp
9 qdir.cpp
10 qfile.cpp
11 qfileinfo.cpp
12 qgarray.cpp
13 qgcache.cpp
14 qgdict.cpp
15 qglist.cpp
16 qglobal.cpp
17 qgstring.cpp
18 qgvector.cpp
19 qiodevice.cpp
20 qregexp.cpp
21 qstring.cpp
22 qtextstream.cpp
23 qtextcodec.cpp
24 qstringlist.cpp
25 qcstringlist.cpp
26 qxml.cpp
27 qmap.cpp
28 qthread.cpp
29 qmutex.cpp
30 qutfcodec.cpp
31 )
32
33 if (UNIX)
34 list(APPEND qtools_src
35 qfile_unix.cpp
36 qdir_unix.cpp
37 qfileinfo_unix.cpp
38 qthread_unix.cpp
39 qmutex_unix.cpp
40 qwaitcondition_unix.cpp
41 )
42 endif()
43
44 if (WIN32)
45 list(APPEND qtools_src
46 qfile_win32.cpp
47 qdir_win32.cpp
48 qfileinfo_win32.cpp
49 qthread_win32.cpp
50 qmutex_win32.cpp
51 qwaitcondition_win32.cpp
52
53 )
54 endif()
55
56 add_library(qtools STATIC
57 ${qtools_src}
58 )