Merge pull request #26148 from ksooo/fix-secondstotimestring-warning
[xbmc.git] / xbmc / CMakeLists.txt
blob689f4af296d4e3f268115493e69649a3bbf74055
1 set(SOURCES AutoSwitch.cpp
2             BackgroundInfoLoader.cpp
3             ContextMenuItem.cpp
4             ContextMenuManager.cpp
5             ContextMenus.cpp
6             CueDocument.cpp
7             DatabaseManager.cpp
8             DbUrl.cpp
9             DynamicDll.cpp
10             FileItem.cpp
11             FileItemList.cpp
12             FileItemListModification.cpp
13             GUIInfoManager.cpp
14             GUILargeTextureManager.cpp
15             GUIPassword.cpp
16             InfoScanner.cpp
17             LangInfo.cpp
18             MediaSource.cpp
19             NfoFile.cpp
20             PasswordManager.cpp
21             PlayListPlayer.cpp
22             PartyModeManager.cpp
23             SectionLoader.cpp
24             SeekHandler.cpp
25             ServiceBroker.cpp
26             ServiceManager.cpp
27             SystemGlobals.cpp
28             TextureCache.cpp
29             TextureCacheJob.cpp
30             TextureDatabase.cpp
31             ThumbLoader.cpp
32             URL.cpp
33             Util.cpp
34             XBDateTime.cpp)
36 set(HEADERS AutoSwitch.h
37             BackgroundInfoLoader.h
38             CompileInfo.h
39             ContextMenuItem.h
40             ContextMenuManager.h
41             ContextMenus.h
42             CueDocument.h
43             DatabaseManager.h
44             DbUrl.h
45             DllPaths.h
46             DllPaths_win32.h
47             DynamicDll.h
48             FileItem.h
49             FileItemList.h
50             FileItemListModification.h
51             GUIInfoManager.h
52             GUILargeTextureManager.h
53             GUIPassword.h
54             GUIUserMessages.h
55             HDRStatus.h
56             IFileItemListModifier.h
57             IProgressCallback.h
58             InfoScanner.h
59             LangInfo.h
60             LockType.h
61             MediaSource.h
62             NfoFile.h
63             PartyModeManager.h
64             PasswordManager.h
65             PlayListPlayer.h
66             SectionLoader.h
67             SeekHandler.h
68             ServiceBroker.h
69             ServiceManager.h
70             SortFileItem.h
71             TextureCache.h
72             TextureCacheJob.h
73             TextureDatabase.h
74             ThumbLoader.h
75             URL.h
76             Util.h
77             XBDateTime.h
78             system_egl.h
79             system_gl.h)
81 if(ENABLE_OPTICAL)
82   list(APPEND SOURCES Autorun.cpp)
83   list(APPEND HEADERS Autorun.h)
84 endif()
86 core_add_library(xbmc)
88 if(CORE_SYSTEM_NAME STREQUAL windowsstore)
89   set_target_properties(${CORE_LIBRARY} PROPERTIES STATIC_LIBRARY_FLAGS "/ignore:4264")
90 endif()