linux.x86.linphone/Linphone/core/CMakeLists.txt
Julien Wadel 536123992c Add Phone numbers with countries and codes.
Add list and proxies for views.
2023-10-25 10:52:02 +02:00

29 lines
847 B
CMake

list(APPEND _LINPHONEAPP_SOURCES
core/App.cpp
core/logger/QtLogger.cpp
core/login/LoginPage.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/thread/Thread.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)