linphone-desktop/Linphone/core/CMakeLists.txt
2024-05-30 17:31:26 +02:00

78 lines
2.3 KiB
CMake

list(APPEND _LINPHONEAPP_SOURCES
core/account/AccountCore.cpp
core/account/AccountGui.cpp
core/account/AccountList.cpp
core/account/AccountProxy.cpp
core/App.cpp
core/call/CallCore.cpp
core/call/CallGui.cpp
core/call/CallList.cpp
core/call/CallProxy.cpp
core/call-history/CallHistoryCore.cpp
core/call-history/CallHistoryGui.cpp
core/call-history/CallHistoryList.cpp
core/call-history/CallHistoryProxy.cpp
core/camera/CameraGui.cpp
core/camera/CameraDummy.cpp
core/camera/PreviewManager.cpp
core/fps-counter/FPSCounter.cpp
core/friend/FriendCore.cpp
core/friend/FriendGui.cpp
core/logger/QtLogger.cpp
core/login/LoginPage.cpp
core/notifier/Notifier.cpp
core/path/Paths.cpp
core/phone-number/PhoneNumber.cpp
core/phone-number/PhoneNumberList.cpp
core/phone-number/PhoneNumberProxy.cpp
core/search/MagicSearchList.cpp
core/search/MagicSearchProxy.cpp
core/setting/SettingsCore.cpp
core/proxy/ListProxy.cpp
core/proxy/Proxy.cpp
core/proxy/SortFilterProxy.cpp
core/variant/VariantList.cpp
core/conference/ConferenceCore.cpp
core/conference/ConferenceGui.cpp
core/conference/ConferenceInfoCore.cpp
core/conference/ConferenceInfoGui.cpp
core/conference/ConferenceInfoList.cpp
core/conference/ConferenceInfoProxy.cpp
core/timezone/TimeZoneList.cpp
core/timezone/TimeZoneProxy.cpp
core/timezone/TimeZone.cpp
core/participant/ParticipantCore.cpp
core/participant/ParticipantGui.cpp
core/participant/ParticipantDeviceCore.cpp
core/participant/ParticipantDeviceGui.cpp
core/participant/ParticipantDeviceList.cpp
core/participant/ParticipantDeviceProxy.cpp
core/participant/ParticipantList.cpp
core/participant/ParticipantProxy.cpp
core/screen/ScreenList.cpp
core/screen/ScreenProxy.cpp
core/videoSource/VideoSourceDescriptorCore.cpp
core/videoSource/VideoSourceDescriptorGui.cpp
)
## Single Application
if(APPLE OR WIN32)
list(APPEND _LINPHONEAPP_SOURCES core/singleapplication/singleapplication.cpp
core/singleapplication/singleapplication_p.cpp)
else() # Use QDBus for Linux
list(APPEND _LINPHONEAPP_SOURCES
core/singleapplication/singleapplication.h #Added for Moc
core/singleapplication/SingleApplicationDBusPrivate.hpp
core/singleapplication/SingleApplicationDBus.cpp)
endif()
set(_LINPHONEAPP_SOURCES ${_LINPHONEAPP_SOURCES} PARENT_SCOPE)