mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 11:28:07 +00:00
Introduce ObjectCore, ObjectGui, ObjectModel. Simulate addAccount signals on adding account (in waiting for SDK callback).
35 lines
1,018 B
CMake
35 lines
1,018 B
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/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/setting/Settings.cpp
|
|
|
|
core/proxy/ListProxy.cpp
|
|
core/proxy/Proxy.cpp
|
|
core/proxy/SortFilterProxy.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)
|