17f8eb462ca9f0b5bd582a3839e48e1d294e5489
[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 qxml.cpp
26 qmap.cpp
27 qthread.cpp
28 qmutex.cpp
29 qutfcodec.cpp
30 )
31
32 if (UNIX)
33 list(APPEND qtools_src
34 qfile_unix.cpp
35 qdir_unix.cpp
36 qfileinfo_unix.cpp
37 qthread_unix.cpp
38 qmutex_unix.cpp
39 qwaitcondition_unix.cpp
40 )
41 endif()
42
43 if (WIN32)
44 list(APPEND qtools_src
45 qfile_win32.cpp
46 qdir_win32.cpp
47 qfileinfo_win32.cpp
48 qthread_win32.cpp
49 qmutex_win32.cpp
50 qwaitcondition_win32.cpp
51
52 )
53 endif()
54
55 add_library(qtools STATIC
56 ${qtools_src}
57 )