summaryrefslogtreecommitdiffstats
path: root/xbmc/utils/test/CMakeLists.txt
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2020-10-19 00:52:24 +0200
committermanuel <manuel@mausz.at>2020-10-19 00:52:24 +0200
commitbe933ef2241d79558f91796cc5b3a161f72ebf9c (patch)
treefe3ab2f130e20c99001f2d7a81d610c78c96a3f4 /xbmc/utils/test/CMakeLists.txt
parent5f8335c1e49ce108ef3481863833c98efa00411b (diff)
downloadkodi-pvr-build-be933ef2241d79558f91796cc5b3a161f72ebf9c.tar.gz
kodi-pvr-build-be933ef2241d79558f91796cc5b3a161f72ebf9c.tar.bz2
kodi-pvr-build-be933ef2241d79558f91796cc5b3a161f72ebf9c.zip
sync with upstream
Diffstat (limited to 'xbmc/utils/test/CMakeLists.txt')
-rw-r--r--xbmc/utils/test/CMakeLists.txt53
1 files changed, 53 insertions, 0 deletions
diff --git a/xbmc/utils/test/CMakeLists.txt b/xbmc/utils/test/CMakeLists.txt
new file mode 100644
index 0000000..e953af6
--- /dev/null
+++ b/xbmc/utils/test/CMakeLists.txt
@@ -0,0 +1,53 @@
1set(SOURCES TestAlarmClock.cpp
2 TestAliasShortcutUtils.cpp
3 TestArchive.cpp
4 TestBase64.cpp
5 TestBitstreamStats.cpp
6 TestCharsetConverter.cpp
7 TestCPUInfo.cpp
8 TestCrc32.cpp
9 TestDatabaseUtils.cpp
10 TestDigest.cpp
11 TestEndianSwap.cpp
12 TestFileOperationJob.cpp
13 TestFileUtils.cpp
14 TestGlobalsHandling.cpp
15 TestHTMLUtil.cpp
16 TestHttpHeader.cpp
17 TestHttpParser.cpp
18 TestHttpRangeUtils.cpp
19 TestHttpResponse.cpp
20 TestJobManager.cpp
21 TestJSONVariantParser.cpp
22 TestJSONVariantWriter.cpp
23 TestLabelFormatter.cpp
24 TestLangCodeExpander.cpp
25 TestLocale.cpp
26 Testlog.cpp
27 TestMathUtils.cpp
28 TestMime.cpp
29 TestPOUtils.cpp
30 TestRegExp.cpp
31 Testrfft.cpp
32 TestRingBuffer.cpp
33 TestScraperParser.cpp
34 TestScraperUrl.cpp
35 TestSortUtils.cpp
36 TestStopwatch.cpp
37 TestStreamDetails.cpp
38 TestStreamUtils.cpp
39 TestStringUtils.cpp
40 TestSystemInfo.cpp
41 TestURIUtils.cpp
42 TestUrlOptions.cpp
43 TestVariant.cpp
44 TestXBMCTinyXML.cpp
45 TestXMLUtils.cpp)
46
47set(HEADERS TestGlobalsHandlingPattern1.h)
48
49if(NOT CORE_SYSTEM_NAME STREQUAL windows AND NOT CORE_SYSTEM_NAME STREQUAL windowsstore)
50 list(APPEND SOURCES TestCryptThreading.cpp)
51endif()
52
53core_add_test_library(utils_test)