~aleteoryx/muditaos

ref: c77a104f3d781b7fb93773be5a2b5af6b97b2a8c muditaos/module-apps/apps-common/popups/CMakeLists.txt -rw-r--r-- 2.1 KiB
c77a104f — Maciej Gibowicz [BH-1991] Creating a new application "What`s new" 1 year, 8 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
target_include_directories(apps-common

	PRIVATE
		"${CMAKE_CURRENT_LIST_DIR}"
)

target_sources(apps-common
	PRIVATE
		HomeModesWindow.cpp
		Popups.cpp
		PowerOffWindow.cpp
		AlarmPopup.cpp
		TetheringConfirmationPopup.cpp
		TetheringNotificationPopup.cpp
		TetheringPhoneModePopup.cpp
		TetheringOffPopup.cpp
		TetheringMenuPopup.cpp
		BluetoothAuthenticatePopup.cpp
		BluetoothInfoPopup.cpp
		VolumeWindow.cpp
		WindowWithTimer.cpp
		lock-popups/PhoneLockedInfoWindow.cpp
		lock-popups/PhoneLockedWindow.cpp
		lock-popups/PhoneLockInputWindow.cpp
		lock-popups/PhoneLockChangeInfoWindow.cpp
		lock-popups/SimLockInputWindow.cpp
		lock-popups/SimInfoWindow.cpp
		lock-popups/SimNotReadyWindow.cpp
		lock-popups/SimSwitchingWindow.cpp
		lock-popups/phone-lock-wallpapers/WallpaperBase.cpp
		lock-popups/phone-lock-wallpapers/WallpaperClock.cpp
		lock-popups/phone-lock-wallpapers/WallpaperQuote.cpp
		lock-popups/phone-lock-wallpapers/WallpaperLogo.cpp
		presenter/PowerOffPresenter.cpp
		presenter/AlarmPresenter.cpp
		data/PopupRequestParamsBase.cpp
		presenter/QuotesPresenter.cpp
		presenter/WallpaperPresenter.cpp
	PRIVATE
		HomeModesWindow.hpp
		Popups.hpp
		PowerOffWindow.hpp
		AlarmPopup.hpp
		TetheringConfirmationPopup.hpp
		TetheringNotificationPopup.hpp
		TetheringPhoneModePopup.hpp
		TetheringMenuPopup.hpp
		BluetoothAuthenticatePopup.hpp
		BluetoothInfoPopup.hpp
		VolumeWindow.hpp
		WindowWithTimer.hpp
		data/PopupData.hpp
		lock-popups/PhoneLockedInfoData.hpp
		lock-popups/PhoneLockedInfoWindow.hpp
		lock-popups/PhoneLockedWindow.hpp
		lock-popups/PhoneLockInputWindow.hpp
		lock-popups/PhoneLockChangeInfoWindow.hpp
		lock-popups/SimLockInputWindow.hpp
		lock-popups/SimInfoWindow.hpp
		lock-popups/SimNotReadyWindow.hpp
		lock-popups/SimSwitchingWindow.hpp
		lock-popups/phone-lock-wallpapers/WallpaperBase.hpp
		lock-popups/phone-lock-wallpapers/WallpaperClock.hpp
		lock-popups/phone-lock-wallpapers/WallpaperQuote.hpp
		lock-popups/phone-lock-wallpapers/WallpaperLogo.hpp
		presenter/PowerOffPresenter.hpp
		presenter/QuotesPresenter.hpp
		presenter/WallpaperPresenter.hpp
)