diff --git a/build_all_linux.sh b/build_all_linux.sh
deleted file mode 100755
index 148e37883..000000000
--- a/build_all_linux.sh
+++ /dev/null
@@ -1,56 +0,0 @@
-#!/bin/bash
-##
-## Copyright (c) 2010-2020 Belledonne Communications SARL.
-##
-## This file is part of linphone-desktop
-## (see https://www.linphone.org).
-##
-## This program is free software: you can redistribute it and/or modify
-## it under the terms of the GNU General Public License as published by
-## the Free Software Foundation, either version 3 of the License, or
-## (at your option) any later version.
-##
-## This program is distributed in the hope that it will be useful,
-## but WITHOUT ANY WARRANTY; without even the implied warranty of
-## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-## GNU General Public License for more details.
-##
-## You should have received a copy of the GNU General Public License
-## along with this program. If not, see .
-##
-
-################################################################################
-# Linux First building script
-#-------------------------------------------------------------------------------
-
-#Stop at error
-set -e
-
-if [[ -z ${Qt5_DIR} ]]; then
- eval "$(qtchooser -print-env)"
- export Qt5_DIR=${QTLIBDIR}/cmake/Qt5
- export PATH=${QTTOOLDIR}:$PATH
-fi
-
-#Creation of folders
-rm -rf build-desktop
-mkdir -p build-desktop
-#Opus crash on Linux. The version for 4.3 is old. We have to use a switch in configuration to select the newest version for desktop.
-#SDK building
-cd build-desktop
-#cmake .. -DLINPHONESDK_PLATFORM=Desktop -DCMAKE_BUILD_TYPE=RelWithDebInfo -DENABLE_VPX=YES -DENABLE_GPL_THIRD_PARTIES=YES -DENABLE_NON_FREE_CODECS=YES -DENABLE_AMRNB=YES -DENABLE_AMRWB=YES -DENABLE_G729=YES -DENABLE_GSM=YES -DENABLE_ILBC=YES -DENABLE_ISAC=YES -DENABLE_SILK=YES -DENABLE_SPEEX=YES -DENABLE_H263=YES -DENABLE_H263P=YES -DENABLE_MPEG4=YES -DENABLE_OPENH264=YES -DENABLE_FFMPEG=YES -DENABLE_VIDEO=YES -DENABLE_GL=YES -DENABLE_OPUS=NO
-cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo -DENABLE_OPUS=NO
-cmake --build . --target sdk --config RelWithDebInfo --parallel 10
-
-#MiniZip Building
-cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo
-cmake --build . --target minizip --config RelWithDebInfo --parallel 10
-cmake --build . --target install
-
-#Desktop Building
-cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo
-cmake --build . --target all --config RelWithDebInfo --parallel 10
-cmake --build . --target install
-
-
-
diff --git a/build_all_macos.sh b/build_all_macos.sh
deleted file mode 100755
index 0bc694d21..000000000
--- a/build_all_macos.sh
+++ /dev/null
@@ -1,55 +0,0 @@
-#!/bin/sh
-##
-## Copyright (c) 2010-2020 Belledonne Communications SARL.
-##
-## This file is part of linphone-desktop
-## (see https://www.linphone.org).
-##
-## This program is free software: you can redistribute it and/or modify
-## it under the terms of the GNU General Public License as published by
-## the Free Software Foundation, either version 3 of the License, or
-## (at your option) any later version.
-##
-## This program is distributed in the hope that it will be useful,
-## but WITHOUT ANY WARRANTY; without even the implied warranty of
-## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-## GNU General Public License for more details.
-##
-## You should have received a copy of the GNU General Public License
-## along with this program. If not, see .
-##
-################################################################################
-
-#-------------------------------------------------------------------------------
-# MAC OSX First building script
-#-------------------------------------------------------------------------------
-#Stop at error
-set -e
-
-if [[ -z ${Qt5_DIR} ]]; then
- export Qt5_DIR=/usr/opt/qt/lib/cmake
- export PATH=$PATH:/usr/local/opt/qt/bin
-fi
-
-#Creation of folders
-rm -rf build-desktop
-mkdir -p build-desktop
-cd build-desktop
-
-#SDK building
-#LINPHONESDK_DOXYGEN_PROGRAM is set just to be sure to get the version of the Application folder
-cmake .. -DLINPHONESDK_DOXYGEN_PROGRAM=/Applications/Doxygen.app/Contents/Resources/doxygen -DCMAKE_OSX_DEPLOYMENT_TARGET=10.9 -DCMAKE_BUILD_TYPE=RelWithDebInfo
-cmake --build . --target all --config RelWithDebInfo --parallel 10
-
-#MiniZip Building
-cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo
-cmake --build . --target all --config RelWithDebInfo --parallel 10
-cmake --build . --target install
-
-#Desktop Building
-cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo
-cmake --build . --target all --config RelWithDebInfo
-cmake --build . --target install
-
-
-
diff --git a/build_all_win.bat b/build_all_win.bat
deleted file mode 100644
index 7955b3bd3..000000000
--- a/build_all_win.bat
+++ /dev/null
@@ -1,22 +0,0 @@
-
-:: Preparing folders
-IF NOT EXIST build-desktop mkdir build-desktop
-
-:: SDK Building
-cd build-desktop
-:: Default config
-cmake .. -DLINPHONESDK_PLATFORM=Desktop -DCMAKE_BUILD_TYPE=RelWithDebInfo -A Win32
-:: Mini config
-::cmake .. -DLINPHONESDK_PLATFORM=Desktop -DCMAKE_BUILD_TYPE=RelWithDebInfo -DENABLE_VPX=NO -DENABLE_OPUS=NO -A Win32 -DENABLE_VIDEO=YES -DENABLE_GL=YES
-if %errorlevel% neq 0 exit /b %errorlevel%
-cmake --build . --target sdk --config RelWithDebInfo --parallel 10 -- /maxcpucount /nodeReuse:true /p:TrackFileAccess=false
-if %errorlevel% neq 0 exit /b %errorlevel%
-
-:: Minizip Submodule Building
-cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo -A Win32
-cmake --build . --target install --config RelWithDebInfo --parallel 10 -- /maxcpucount /nodeReuse:true /p:TrackFileAccess=false
-
-:: Desktop Building
-cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo -A Win32
-if %errorlevel% neq 0 exit /b %errorlevel%
-cmake --build . --target install --config RelWithDebInfo --parallel 10 -- /maxcpucount /nodeReuse:true /p:TrackFileAccess=false
diff --git a/application_info.cmake b/linphone-desktop/application_info.cmake
similarity index 100%
rename from application_info.cmake
rename to linphone-desktop/application_info.cmake
diff --git a/assets/app-icon.rc b/linphone-desktop/assets/app-icon.rc
similarity index 100%
rename from assets/app-icon.rc
rename to linphone-desktop/assets/app-icon.rc
diff --git a/assets/assistant/create-app-sip-account.rc b/linphone-desktop/assets/assistant/create-app-sip-account.rc
similarity index 100%
rename from assets/assistant/create-app-sip-account.rc
rename to linphone-desktop/assets/assistant/create-app-sip-account.rc
diff --git a/assets/assistant/use-app-sip-account.rc b/linphone-desktop/assets/assistant/use-app-sip-account.rc
similarity index 100%
rename from assets/assistant/use-app-sip-account.rc
rename to linphone-desktop/assets/assistant/use-app-sip-account.rc
diff --git a/assets/assistant/use-other-sip-account.rc b/linphone-desktop/assets/assistant/use-other-sip-account.rc
similarity index 100%
rename from assets/assistant/use-other-sip-account.rc
rename to linphone-desktop/assets/assistant/use-other-sip-account.rc
diff --git a/assets/fonts/NotoSans-hinted/LICENSE_OFL.txt b/linphone-desktop/assets/fonts/NotoSans-hinted/LICENSE_OFL.txt
similarity index 100%
rename from assets/fonts/NotoSans-hinted/LICENSE_OFL.txt
rename to linphone-desktop/assets/fonts/NotoSans-hinted/LICENSE_OFL.txt
diff --git a/assets/fonts/NotoSans-hinted/NotoSans-Bold.ttf b/linphone-desktop/assets/fonts/NotoSans-hinted/NotoSans-Bold.ttf
similarity index 100%
rename from assets/fonts/NotoSans-hinted/NotoSans-Bold.ttf
rename to linphone-desktop/assets/fonts/NotoSans-hinted/NotoSans-Bold.ttf
diff --git a/assets/fonts/NotoSans-hinted/NotoSans-BoldItalic.ttf b/linphone-desktop/assets/fonts/NotoSans-hinted/NotoSans-BoldItalic.ttf
similarity index 100%
rename from assets/fonts/NotoSans-hinted/NotoSans-BoldItalic.ttf
rename to linphone-desktop/assets/fonts/NotoSans-hinted/NotoSans-BoldItalic.ttf
diff --git a/assets/fonts/NotoSans-hinted/NotoSans-Italic.ttf b/linphone-desktop/assets/fonts/NotoSans-hinted/NotoSans-Italic.ttf
similarity index 100%
rename from assets/fonts/NotoSans-hinted/NotoSans-Italic.ttf
rename to linphone-desktop/assets/fonts/NotoSans-hinted/NotoSans-Italic.ttf
diff --git a/assets/fonts/NotoSans-hinted/NotoSans-Regular.ttf b/linphone-desktop/assets/fonts/NotoSans-hinted/NotoSans-Regular.ttf
similarity index 100%
rename from assets/fonts/NotoSans-hinted/NotoSans-Regular.ttf
rename to linphone-desktop/assets/fonts/NotoSans-hinted/NotoSans-Regular.ttf
diff --git a/assets/fonts/NotoSans-hinted/NotoSansUI-Bold.ttf b/linphone-desktop/assets/fonts/NotoSans-hinted/NotoSansUI-Bold.ttf
similarity index 100%
rename from assets/fonts/NotoSans-hinted/NotoSansUI-Bold.ttf
rename to linphone-desktop/assets/fonts/NotoSans-hinted/NotoSansUI-Bold.ttf
diff --git a/assets/fonts/NotoSans-hinted/NotoSansUI-BoldItalic.ttf b/linphone-desktop/assets/fonts/NotoSans-hinted/NotoSansUI-BoldItalic.ttf
similarity index 100%
rename from assets/fonts/NotoSans-hinted/NotoSansUI-BoldItalic.ttf
rename to linphone-desktop/assets/fonts/NotoSans-hinted/NotoSansUI-BoldItalic.ttf
diff --git a/assets/fonts/NotoSans-hinted/NotoSansUI-Italic.ttf b/linphone-desktop/assets/fonts/NotoSans-hinted/NotoSansUI-Italic.ttf
similarity index 100%
rename from assets/fonts/NotoSans-hinted/NotoSansUI-Italic.ttf
rename to linphone-desktop/assets/fonts/NotoSans-hinted/NotoSansUI-Italic.ttf
diff --git a/assets/fonts/NotoSans-hinted/NotoSansUI-Regular.ttf b/linphone-desktop/assets/fonts/NotoSans-hinted/NotoSansUI-Regular.ttf
similarity index 100%
rename from assets/fonts/NotoSans-hinted/NotoSansUI-Regular.ttf
rename to linphone-desktop/assets/fonts/NotoSans-hinted/NotoSansUI-Regular.ttf
diff --git a/assets/fonts/NotoSans-hinted/README b/linphone-desktop/assets/fonts/NotoSans-hinted/README
similarity index 100%
rename from assets/fonts/NotoSans-hinted/README
rename to linphone-desktop/assets/fonts/NotoSans-hinted/README
diff --git a/assets/icon.ico b/linphone-desktop/assets/icon.ico
similarity index 100%
rename from assets/icon.ico
rename to linphone-desktop/assets/icon.ico
diff --git a/assets/icons/genicons.sh b/linphone-desktop/assets/icons/genicons.sh
similarity index 100%
rename from assets/icons/genicons.sh
rename to linphone-desktop/assets/icons/genicons.sh
diff --git a/assets/icons/genicons_1.0.sh b/linphone-desktop/assets/icons/genicons_1.0.sh
similarity index 100%
rename from assets/icons/genicons_1.0.sh
rename to linphone-desktop/assets/icons/genicons_1.0.sh
diff --git a/assets/icons/hicolor/128x128/apps/icon.png b/linphone-desktop/assets/icons/hicolor/128x128/apps/icon.png
similarity index 100%
rename from assets/icons/hicolor/128x128/apps/icon.png
rename to linphone-desktop/assets/icons/hicolor/128x128/apps/icon.png
diff --git a/assets/icons/hicolor/16x16/apps/icon.png b/linphone-desktop/assets/icons/hicolor/16x16/apps/icon.png
similarity index 100%
rename from assets/icons/hicolor/16x16/apps/icon.png
rename to linphone-desktop/assets/icons/hicolor/16x16/apps/icon.png
diff --git a/assets/icons/hicolor/22x22/apps/icon.png b/linphone-desktop/assets/icons/hicolor/22x22/apps/icon.png
similarity index 100%
rename from assets/icons/hicolor/22x22/apps/icon.png
rename to linphone-desktop/assets/icons/hicolor/22x22/apps/icon.png
diff --git a/assets/icons/hicolor/24x24/apps/icon.png b/linphone-desktop/assets/icons/hicolor/24x24/apps/icon.png
similarity index 100%
rename from assets/icons/hicolor/24x24/apps/icon.png
rename to linphone-desktop/assets/icons/hicolor/24x24/apps/icon.png
diff --git a/assets/icons/hicolor/256x256/apps/icon.png b/linphone-desktop/assets/icons/hicolor/256x256/apps/icon.png
similarity index 100%
rename from assets/icons/hicolor/256x256/apps/icon.png
rename to linphone-desktop/assets/icons/hicolor/256x256/apps/icon.png
diff --git a/assets/icons/hicolor/32x32/apps/icon.png b/linphone-desktop/assets/icons/hicolor/32x32/apps/icon.png
similarity index 100%
rename from assets/icons/hicolor/32x32/apps/icon.png
rename to linphone-desktop/assets/icons/hicolor/32x32/apps/icon.png
diff --git a/assets/icons/hicolor/64x64/apps/icon.png b/linphone-desktop/assets/icons/hicolor/64x64/apps/icon.png
similarity index 100%
rename from assets/icons/hicolor/64x64/apps/icon.png
rename to linphone-desktop/assets/icons/hicolor/64x64/apps/icon.png
diff --git a/assets/images/add_disabled.svg b/linphone-desktop/assets/images/add_disabled.svg
similarity index 100%
rename from assets/images/add_disabled.svg
rename to linphone-desktop/assets/images/add_disabled.svg
diff --git a/assets/images/add_hovered.svg b/linphone-desktop/assets/images/add_hovered.svg
similarity index 100%
rename from assets/images/add_hovered.svg
rename to linphone-desktop/assets/images/add_hovered.svg
diff --git a/assets/images/add_normal.svg b/linphone-desktop/assets/images/add_normal.svg
similarity index 100%
rename from assets/images/add_normal.svg
rename to linphone-desktop/assets/images/add_normal.svg
diff --git a/assets/images/add_pressed.svg b/linphone-desktop/assets/images/add_pressed.svg
similarity index 100%
rename from assets/images/add_pressed.svg
rename to linphone-desktop/assets/images/add_pressed.svg
diff --git a/assets/images/attachment_disabled.svg b/linphone-desktop/assets/images/attachment_disabled.svg
similarity index 100%
rename from assets/images/attachment_disabled.svg
rename to linphone-desktop/assets/images/attachment_disabled.svg
diff --git a/assets/images/attachment_hovered.svg b/linphone-desktop/assets/images/attachment_hovered.svg
similarity index 100%
rename from assets/images/attachment_hovered.svg
rename to linphone-desktop/assets/images/attachment_hovered.svg
diff --git a/assets/images/attachment_normal.svg b/linphone-desktop/assets/images/attachment_normal.svg
similarity index 100%
rename from assets/images/attachment_normal.svg
rename to linphone-desktop/assets/images/attachment_normal.svg
diff --git a/assets/images/attachment_pressed.svg b/linphone-desktop/assets/images/attachment_pressed.svg
similarity index 100%
rename from assets/images/attachment_pressed.svg
rename to linphone-desktop/assets/images/attachment_pressed.svg
diff --git a/assets/images/auto_answer.svg b/linphone-desktop/assets/images/auto_answer.svg
similarity index 100%
rename from assets/images/auto_answer.svg
rename to linphone-desktop/assets/images/auto_answer.svg
diff --git a/assets/images/burger_menu_hovered.svg b/linphone-desktop/assets/images/burger_menu_hovered.svg
similarity index 100%
rename from assets/images/burger_menu_hovered.svg
rename to linphone-desktop/assets/images/burger_menu_hovered.svg
diff --git a/assets/images/burger_menu_light_hovered.svg b/linphone-desktop/assets/images/burger_menu_light_hovered.svg
similarity index 100%
rename from assets/images/burger_menu_light_hovered.svg
rename to linphone-desktop/assets/images/burger_menu_light_hovered.svg
diff --git a/assets/images/burger_menu_light_normal.svg b/linphone-desktop/assets/images/burger_menu_light_normal.svg
similarity index 100%
rename from assets/images/burger_menu_light_normal.svg
rename to linphone-desktop/assets/images/burger_menu_light_normal.svg
diff --git a/assets/images/burger_menu_light_pressed.svg b/linphone-desktop/assets/images/burger_menu_light_pressed.svg
similarity index 100%
rename from assets/images/burger_menu_light_pressed.svg
rename to linphone-desktop/assets/images/burger_menu_light_pressed.svg
diff --git a/assets/images/burger_menu_normal.svg b/linphone-desktop/assets/images/burger_menu_normal.svg
similarity index 100%
rename from assets/images/burger_menu_normal.svg
rename to linphone-desktop/assets/images/burger_menu_normal.svg
diff --git a/assets/images/burger_menu_pressed.svg b/linphone-desktop/assets/images/burger_menu_pressed.svg
similarity index 100%
rename from assets/images/burger_menu_pressed.svg
rename to linphone-desktop/assets/images/burger_menu_pressed.svg
diff --git a/assets/images/call_accept_hovered.svg b/linphone-desktop/assets/images/call_accept_hovered.svg
similarity index 100%
rename from assets/images/call_accept_hovered.svg
rename to linphone-desktop/assets/images/call_accept_hovered.svg
diff --git a/assets/images/call_accept_normal.svg b/linphone-desktop/assets/images/call_accept_normal.svg
similarity index 100%
rename from assets/images/call_accept_normal.svg
rename to linphone-desktop/assets/images/call_accept_normal.svg
diff --git a/assets/images/call_accept_pressed.svg b/linphone-desktop/assets/images/call_accept_pressed.svg
similarity index 100%
rename from assets/images/call_accept_pressed.svg
rename to linphone-desktop/assets/images/call_accept_pressed.svg
diff --git a/assets/images/call_chat_secure_hovered.svg b/linphone-desktop/assets/images/call_chat_secure_hovered.svg
similarity index 100%
rename from assets/images/call_chat_secure_hovered.svg
rename to linphone-desktop/assets/images/call_chat_secure_hovered.svg
diff --git a/assets/images/call_chat_secure_normal.svg b/linphone-desktop/assets/images/call_chat_secure_normal.svg
similarity index 100%
rename from assets/images/call_chat_secure_normal.svg
rename to linphone-desktop/assets/images/call_chat_secure_normal.svg
diff --git a/assets/images/call_chat_secure_pressed.svg b/linphone-desktop/assets/images/call_chat_secure_pressed.svg
similarity index 100%
rename from assets/images/call_chat_secure_pressed.svg
rename to linphone-desktop/assets/images/call_chat_secure_pressed.svg
diff --git a/assets/images/call_chat_unsecure_hovered.svg b/linphone-desktop/assets/images/call_chat_unsecure_hovered.svg
similarity index 100%
rename from assets/images/call_chat_unsecure_hovered.svg
rename to linphone-desktop/assets/images/call_chat_unsecure_hovered.svg
diff --git a/assets/images/call_chat_unsecure_normal.svg b/linphone-desktop/assets/images/call_chat_unsecure_normal.svg
similarity index 100%
rename from assets/images/call_chat_unsecure_normal.svg
rename to linphone-desktop/assets/images/call_chat_unsecure_normal.svg
diff --git a/assets/images/call_chat_unsecure_pressed.svg b/linphone-desktop/assets/images/call_chat_unsecure_pressed.svg
similarity index 100%
rename from assets/images/call_chat_unsecure_pressed.svg
rename to linphone-desktop/assets/images/call_chat_unsecure_pressed.svg
diff --git a/assets/images/call_hovered.svg b/linphone-desktop/assets/images/call_hovered.svg
similarity index 100%
rename from assets/images/call_hovered.svg
rename to linphone-desktop/assets/images/call_hovered.svg
diff --git a/assets/images/call_normal.svg b/linphone-desktop/assets/images/call_normal.svg
similarity index 100%
rename from assets/images/call_normal.svg
rename to linphone-desktop/assets/images/call_normal.svg
diff --git a/assets/images/call_pressed.svg b/linphone-desktop/assets/images/call_pressed.svg
similarity index 100%
rename from assets/images/call_pressed.svg
rename to linphone-desktop/assets/images/call_pressed.svg
diff --git a/assets/images/call_quality_0.svg b/linphone-desktop/assets/images/call_quality_0.svg
similarity index 100%
rename from assets/images/call_quality_0.svg
rename to linphone-desktop/assets/images/call_quality_0.svg
diff --git a/assets/images/call_quality_1.svg b/linphone-desktop/assets/images/call_quality_1.svg
similarity index 100%
rename from assets/images/call_quality_1.svg
rename to linphone-desktop/assets/images/call_quality_1.svg
diff --git a/assets/images/call_quality_2.svg b/linphone-desktop/assets/images/call_quality_2.svg
similarity index 100%
rename from assets/images/call_quality_2.svg
rename to linphone-desktop/assets/images/call_quality_2.svg
diff --git a/assets/images/call_quality_3.svg b/linphone-desktop/assets/images/call_quality_3.svg
similarity index 100%
rename from assets/images/call_quality_3.svg
rename to linphone-desktop/assets/images/call_quality_3.svg
diff --git a/assets/images/call_sign_connected.svg b/linphone-desktop/assets/images/call_sign_connected.svg
similarity index 100%
rename from assets/images/call_sign_connected.svg
rename to linphone-desktop/assets/images/call_sign_connected.svg
diff --git a/assets/images/call_sign_ended.svg b/linphone-desktop/assets/images/call_sign_ended.svg
similarity index 100%
rename from assets/images/call_sign_ended.svg
rename to linphone-desktop/assets/images/call_sign_ended.svg
diff --git a/assets/images/call_sign_incoming.svg b/linphone-desktop/assets/images/call_sign_incoming.svg
similarity index 100%
rename from assets/images/call_sign_incoming.svg
rename to linphone-desktop/assets/images/call_sign_incoming.svg
diff --git a/assets/images/call_sign_outgoing.svg b/linphone-desktop/assets/images/call_sign_outgoing.svg
similarity index 100%
rename from assets/images/call_sign_outgoing.svg
rename to linphone-desktop/assets/images/call_sign_outgoing.svg
diff --git a/assets/images/call_sign_paused.svg b/linphone-desktop/assets/images/call_sign_paused.svg
similarity index 100%
rename from assets/images/call_sign_paused.svg
rename to linphone-desktop/assets/images/call_sign_paused.svg
diff --git a/assets/images/camera.svg b/linphone-desktop/assets/images/camera.svg
similarity index 100%
rename from assets/images/camera.svg
rename to linphone-desktop/assets/images/camera.svg
diff --git a/assets/images/camera_off_hovered.svg b/linphone-desktop/assets/images/camera_off_hovered.svg
similarity index 100%
rename from assets/images/camera_off_hovered.svg
rename to linphone-desktop/assets/images/camera_off_hovered.svg
diff --git a/assets/images/camera_off_normal.svg b/linphone-desktop/assets/images/camera_off_normal.svg
similarity index 100%
rename from assets/images/camera_off_normal.svg
rename to linphone-desktop/assets/images/camera_off_normal.svg
diff --git a/assets/images/camera_off_pressed.svg b/linphone-desktop/assets/images/camera_off_pressed.svg
similarity index 100%
rename from assets/images/camera_off_pressed.svg
rename to linphone-desktop/assets/images/camera_off_pressed.svg
diff --git a/assets/images/camera_off_updating.svg b/linphone-desktop/assets/images/camera_off_updating.svg
similarity index 100%
rename from assets/images/camera_off_updating.svg
rename to linphone-desktop/assets/images/camera_off_updating.svg
diff --git a/assets/images/camera_on_hovered.svg b/linphone-desktop/assets/images/camera_on_hovered.svg
similarity index 100%
rename from assets/images/camera_on_hovered.svg
rename to linphone-desktop/assets/images/camera_on_hovered.svg
diff --git a/assets/images/camera_on_normal.svg b/linphone-desktop/assets/images/camera_on_normal.svg
similarity index 100%
rename from assets/images/camera_on_normal.svg
rename to linphone-desktop/assets/images/camera_on_normal.svg
diff --git a/assets/images/camera_on_pressed.svg b/linphone-desktop/assets/images/camera_on_pressed.svg
similarity index 100%
rename from assets/images/camera_on_pressed.svg
rename to linphone-desktop/assets/images/camera_on_pressed.svg
diff --git a/assets/images/camera_on_updating.svg b/linphone-desktop/assets/images/camera_on_updating.svg
similarity index 100%
rename from assets/images/camera_on_updating.svg
rename to linphone-desktop/assets/images/camera_on_updating.svg
diff --git a/assets/images/cancel_hovered.svg b/linphone-desktop/assets/images/cancel_hovered.svg
similarity index 100%
rename from assets/images/cancel_hovered.svg
rename to linphone-desktop/assets/images/cancel_hovered.svg
diff --git a/assets/images/cancel_normal.svg b/linphone-desktop/assets/images/cancel_normal.svg
similarity index 100%
rename from assets/images/cancel_normal.svg
rename to linphone-desktop/assets/images/cancel_normal.svg
diff --git a/assets/images/cancel_pressed.svg b/linphone-desktop/assets/images/cancel_pressed.svg
similarity index 100%
rename from assets/images/cancel_pressed.svg
rename to linphone-desktop/assets/images/cancel_pressed.svg
diff --git a/assets/images/chat_amount.svg b/linphone-desktop/assets/images/chat_amount.svg
similarity index 100%
rename from assets/images/chat_amount.svg
rename to linphone-desktop/assets/images/chat_amount.svg
diff --git a/assets/images/chat_count.svg b/linphone-desktop/assets/images/chat_count.svg
similarity index 100%
rename from assets/images/chat_count.svg
rename to linphone-desktop/assets/images/chat_count.svg
diff --git a/assets/images/chat_delivered.svg b/linphone-desktop/assets/images/chat_delivered.svg
similarity index 100%
rename from assets/images/chat_delivered.svg
rename to linphone-desktop/assets/images/chat_delivered.svg
diff --git a/assets/images/chat_error.svg b/linphone-desktop/assets/images/chat_error.svg
similarity index 100%
rename from assets/images/chat_error.svg
rename to linphone-desktop/assets/images/chat_error.svg
diff --git a/assets/images/chat_hovered.svg b/linphone-desktop/assets/images/chat_hovered.svg
similarity index 100%
rename from assets/images/chat_hovered.svg
rename to linphone-desktop/assets/images/chat_hovered.svg
diff --git a/assets/images/chat_is_composing_0.svg b/linphone-desktop/assets/images/chat_is_composing_0.svg
similarity index 100%
rename from assets/images/chat_is_composing_0.svg
rename to linphone-desktop/assets/images/chat_is_composing_0.svg
diff --git a/assets/images/chat_is_composing_1.svg b/linphone-desktop/assets/images/chat_is_composing_1.svg
similarity index 100%
rename from assets/images/chat_is_composing_1.svg
rename to linphone-desktop/assets/images/chat_is_composing_1.svg
diff --git a/assets/images/chat_is_composing_2.svg b/linphone-desktop/assets/images/chat_is_composing_2.svg
similarity index 100%
rename from assets/images/chat_is_composing_2.svg
rename to linphone-desktop/assets/images/chat_is_composing_2.svg
diff --git a/assets/images/chat_is_composing_3.svg b/linphone-desktop/assets/images/chat_is_composing_3.svg
similarity index 100%
rename from assets/images/chat_is_composing_3.svg
rename to linphone-desktop/assets/images/chat_is_composing_3.svg
diff --git a/assets/images/chat_normal.svg b/linphone-desktop/assets/images/chat_normal.svg
similarity index 100%
rename from assets/images/chat_normal.svg
rename to linphone-desktop/assets/images/chat_normal.svg
diff --git a/assets/images/chat_pressed.svg b/linphone-desktop/assets/images/chat_pressed.svg
similarity index 100%
rename from assets/images/chat_pressed.svg
rename to linphone-desktop/assets/images/chat_pressed.svg
diff --git a/assets/images/chat_read.svg b/linphone-desktop/assets/images/chat_read.svg
similarity index 100%
rename from assets/images/chat_read.svg
rename to linphone-desktop/assets/images/chat_read.svg
diff --git a/assets/images/collapse.svg b/linphone-desktop/assets/images/collapse.svg
similarity index 100%
rename from assets/images/collapse.svg
rename to linphone-desktop/assets/images/collapse.svg
diff --git a/assets/images/contact_add.svg b/linphone-desktop/assets/images/contact_add.svg
similarity index 100%
rename from assets/images/contact_add.svg
rename to linphone-desktop/assets/images/contact_add.svg
diff --git a/assets/images/contact_add_hovered.svg b/linphone-desktop/assets/images/contact_add_hovered.svg
similarity index 100%
rename from assets/images/contact_add_hovered.svg
rename to linphone-desktop/assets/images/contact_add_hovered.svg
diff --git a/assets/images/contact_add_normal.svg b/linphone-desktop/assets/images/contact_add_normal.svg
similarity index 100%
rename from assets/images/contact_add_normal.svg
rename to linphone-desktop/assets/images/contact_add_normal.svg
diff --git a/assets/images/contact_add_pressed.svg b/linphone-desktop/assets/images/contact_add_pressed.svg
similarity index 100%
rename from assets/images/contact_add_pressed.svg
rename to linphone-desktop/assets/images/contact_add_pressed.svg
diff --git a/assets/images/contact_card_photo_disabled.svg b/linphone-desktop/assets/images/contact_card_photo_disabled.svg
similarity index 100%
rename from assets/images/contact_card_photo_disabled.svg
rename to linphone-desktop/assets/images/contact_card_photo_disabled.svg
diff --git a/assets/images/contact_card_photo_hovered.svg b/linphone-desktop/assets/images/contact_card_photo_hovered.svg
similarity index 100%
rename from assets/images/contact_card_photo_hovered.svg
rename to linphone-desktop/assets/images/contact_card_photo_hovered.svg
diff --git a/assets/images/contact_card_photo_normal.svg b/linphone-desktop/assets/images/contact_card_photo_normal.svg
similarity index 100%
rename from assets/images/contact_card_photo_normal.svg
rename to linphone-desktop/assets/images/contact_card_photo_normal.svg
diff --git a/assets/images/contact_card_photo_pressed.svg b/linphone-desktop/assets/images/contact_card_photo_pressed.svg
similarity index 100%
rename from assets/images/contact_card_photo_pressed.svg
rename to linphone-desktop/assets/images/contact_card_photo_pressed.svg
diff --git a/assets/images/contact_edit_hovered.svg b/linphone-desktop/assets/images/contact_edit_hovered.svg
similarity index 100%
rename from assets/images/contact_edit_hovered.svg
rename to linphone-desktop/assets/images/contact_edit_hovered.svg
diff --git a/assets/images/contact_edit_normal.svg b/linphone-desktop/assets/images/contact_edit_normal.svg
similarity index 100%
rename from assets/images/contact_edit_normal.svg
rename to linphone-desktop/assets/images/contact_edit_normal.svg
diff --git a/assets/images/contact_edit_pressed.svg b/linphone-desktop/assets/images/contact_edit_pressed.svg
similarity index 100%
rename from assets/images/contact_edit_pressed.svg
rename to linphone-desktop/assets/images/contact_edit_pressed.svg
diff --git a/assets/images/contact_normal.svg b/linphone-desktop/assets/images/contact_normal.svg
similarity index 100%
rename from assets/images/contact_normal.svg
rename to linphone-desktop/assets/images/contact_normal.svg
diff --git a/assets/images/contact_selected.svg b/linphone-desktop/assets/images/contact_selected.svg
similarity index 100%
rename from assets/images/contact_selected.svg
rename to linphone-desktop/assets/images/contact_selected.svg
diff --git a/assets/images/declined_incoming_call.svg b/linphone-desktop/assets/images/declined_incoming_call.svg
similarity index 100%
rename from assets/images/declined_incoming_call.svg
rename to linphone-desktop/assets/images/declined_incoming_call.svg
diff --git a/assets/images/declined_outgoing_call.svg b/linphone-desktop/assets/images/declined_outgoing_call.svg
similarity index 100%
rename from assets/images/declined_outgoing_call.svg
rename to linphone-desktop/assets/images/declined_outgoing_call.svg
diff --git a/assets/images/delete_hovered.svg b/linphone-desktop/assets/images/delete_hovered.svg
similarity index 100%
rename from assets/images/delete_hovered.svg
rename to linphone-desktop/assets/images/delete_hovered.svg
diff --git a/assets/images/delete_normal.svg b/linphone-desktop/assets/images/delete_normal.svg
similarity index 100%
rename from assets/images/delete_normal.svg
rename to linphone-desktop/assets/images/delete_normal.svg
diff --git a/assets/images/delete_pressed.svg b/linphone-desktop/assets/images/delete_pressed.svg
similarity index 100%
rename from assets/images/delete_pressed.svg
rename to linphone-desktop/assets/images/delete_pressed.svg
diff --git a/assets/images/download.svg b/linphone-desktop/assets/images/download.svg
similarity index 100%
rename from assets/images/download.svg
rename to linphone-desktop/assets/images/download.svg
diff --git a/assets/images/drop_down.svg b/linphone-desktop/assets/images/drop_down.svg
similarity index 100%
rename from assets/images/drop_down.svg
rename to linphone-desktop/assets/images/drop_down.svg
diff --git a/assets/images/edit_hovered.svg b/linphone-desktop/assets/images/edit_hovered.svg
similarity index 100%
rename from assets/images/edit_hovered.svg
rename to linphone-desktop/assets/images/edit_hovered.svg
diff --git a/assets/images/edit_normal.svg b/linphone-desktop/assets/images/edit_normal.svg
similarity index 100%
rename from assets/images/edit_normal.svg
rename to linphone-desktop/assets/images/edit_normal.svg
diff --git a/assets/images/edit_pressed.svg b/linphone-desktop/assets/images/edit_pressed.svg
similarity index 100%
rename from assets/images/edit_pressed.svg
rename to linphone-desktop/assets/images/edit_pressed.svg
diff --git a/assets/images/ended_call.svg b/linphone-desktop/assets/images/ended_call.svg
similarity index 100%
rename from assets/images/ended_call.svg
rename to linphone-desktop/assets/images/ended_call.svg
diff --git a/assets/images/file_hovered.svg b/linphone-desktop/assets/images/file_hovered.svg
similarity index 100%
rename from assets/images/file_hovered.svg
rename to linphone-desktop/assets/images/file_hovered.svg
diff --git a/assets/images/file_normal.svg b/linphone-desktop/assets/images/file_normal.svg
similarity index 100%
rename from assets/images/file_normal.svg
rename to linphone-desktop/assets/images/file_normal.svg
diff --git a/assets/images/file_pressed.svg b/linphone-desktop/assets/images/file_pressed.svg
similarity index 100%
rename from assets/images/file_pressed.svg
rename to linphone-desktop/assets/images/file_pressed.svg
diff --git a/assets/images/file_sign.svg b/linphone-desktop/assets/images/file_sign.svg
similarity index 100%
rename from assets/images/file_sign.svg
rename to linphone-desktop/assets/images/file_sign.svg
diff --git a/assets/images/filter.svg b/linphone-desktop/assets/images/filter.svg
similarity index 100%
rename from assets/images/filter.svg
rename to linphone-desktop/assets/images/filter.svg
diff --git a/assets/images/folder_hovered.svg b/linphone-desktop/assets/images/folder_hovered.svg
similarity index 100%
rename from assets/images/folder_hovered.svg
rename to linphone-desktop/assets/images/folder_hovered.svg
diff --git a/assets/images/folder_normal.svg b/linphone-desktop/assets/images/folder_normal.svg
similarity index 100%
rename from assets/images/folder_normal.svg
rename to linphone-desktop/assets/images/folder_normal.svg
diff --git a/assets/images/folder_pressed.svg b/linphone-desktop/assets/images/folder_pressed.svg
similarity index 100%
rename from assets/images/folder_pressed.svg
rename to linphone-desktop/assets/images/folder_pressed.svg
diff --git a/assets/images/fullscreen_hovered.svg b/linphone-desktop/assets/images/fullscreen_hovered.svg
similarity index 100%
rename from assets/images/fullscreen_hovered.svg
rename to linphone-desktop/assets/images/fullscreen_hovered.svg
diff --git a/assets/images/fullscreen_normal.svg b/linphone-desktop/assets/images/fullscreen_normal.svg
similarity index 100%
rename from assets/images/fullscreen_normal.svg
rename to linphone-desktop/assets/images/fullscreen_normal.svg
diff --git a/assets/images/fullscreen_pressed.svg b/linphone-desktop/assets/images/fullscreen_pressed.svg
similarity index 100%
rename from assets/images/fullscreen_pressed.svg
rename to linphone-desktop/assets/images/fullscreen_pressed.svg
diff --git a/assets/images/generic_error.svg b/linphone-desktop/assets/images/generic_error.svg
similarity index 100%
rename from assets/images/generic_error.svg
rename to linphone-desktop/assets/images/generic_error.svg
diff --git a/assets/images/generic_error_hovered.svg b/linphone-desktop/assets/images/generic_error_hovered.svg
similarity index 100%
rename from assets/images/generic_error_hovered.svg
rename to linphone-desktop/assets/images/generic_error_hovered.svg
diff --git a/assets/images/generic_error_normal.svg b/linphone-desktop/assets/images/generic_error_normal.svg
similarity index 100%
rename from assets/images/generic_error_normal.svg
rename to linphone-desktop/assets/images/generic_error_normal.svg
diff --git a/assets/images/generic_error_pressed.svg b/linphone-desktop/assets/images/generic_error_pressed.svg
similarity index 100%
rename from assets/images/generic_error_pressed.svg
rename to linphone-desktop/assets/images/generic_error_pressed.svg
diff --git a/assets/images/hangup_hovered.svg b/linphone-desktop/assets/images/hangup_hovered.svg
similarity index 100%
rename from assets/images/hangup_hovered.svg
rename to linphone-desktop/assets/images/hangup_hovered.svg
diff --git a/assets/images/hangup_normal.svg b/linphone-desktop/assets/images/hangup_normal.svg
similarity index 100%
rename from assets/images/hangup_normal.svg
rename to linphone-desktop/assets/images/hangup_normal.svg
diff --git a/assets/images/hangup_pressed.svg b/linphone-desktop/assets/images/hangup_pressed.svg
similarity index 100%
rename from assets/images/hangup_pressed.svg
rename to linphone-desktop/assets/images/hangup_pressed.svg
diff --git a/assets/images/history.svg b/linphone-desktop/assets/images/history.svg
similarity index 100%
rename from assets/images/history.svg
rename to linphone-desktop/assets/images/history.svg
diff --git a/assets/images/history_hovered.svg b/linphone-desktop/assets/images/history_hovered.svg
similarity index 100%
rename from assets/images/history_hovered.svg
rename to linphone-desktop/assets/images/history_hovered.svg
diff --git a/assets/images/history_normal.svg b/linphone-desktop/assets/images/history_normal.svg
similarity index 100%
rename from assets/images/history_normal.svg
rename to linphone-desktop/assets/images/history_normal.svg
diff --git a/assets/images/history_pressed.svg b/linphone-desktop/assets/images/history_pressed.svg
similarity index 100%
rename from assets/images/history_pressed.svg
rename to linphone-desktop/assets/images/history_pressed.svg
diff --git a/assets/images/home_account_assistant.svg b/linphone-desktop/assets/images/home_account_assistant.svg
similarity index 100%
rename from assets/images/home_account_assistant.svg
rename to linphone-desktop/assets/images/home_account_assistant.svg
diff --git a/assets/images/home_invite_friends.svg b/linphone-desktop/assets/images/home_invite_friends.svg
similarity index 100%
rename from assets/images/home_invite_friends.svg
rename to linphone-desktop/assets/images/home_invite_friends.svg
diff --git a/assets/images/home_normal.svg b/linphone-desktop/assets/images/home_normal.svg
similarity index 100%
rename from assets/images/home_normal.svg
rename to linphone-desktop/assets/images/home_normal.svg
diff --git a/assets/images/home_selected.svg b/linphone-desktop/assets/images/home_selected.svg
similarity index 100%
rename from assets/images/home_selected.svg
rename to linphone-desktop/assets/images/home_selected.svg
diff --git a/assets/images/home_use_linphone.svg b/linphone-desktop/assets/images/home_use_linphone.svg
similarity index 100%
rename from assets/images/home_use_linphone.svg
rename to linphone-desktop/assets/images/home_use_linphone.svg
diff --git a/assets/images/incoming_call.svg b/linphone-desktop/assets/images/incoming_call.svg
similarity index 100%
rename from assets/images/incoming_call.svg
rename to linphone-desktop/assets/images/incoming_call.svg
diff --git a/assets/images/led_green.svg b/linphone-desktop/assets/images/led_green.svg
similarity index 100%
rename from assets/images/led_green.svg
rename to linphone-desktop/assets/images/led_green.svg
diff --git a/assets/images/led_orange.svg b/linphone-desktop/assets/images/led_orange.svg
similarity index 100%
rename from assets/images/led_orange.svg
rename to linphone-desktop/assets/images/led_orange.svg
diff --git a/assets/images/led_red.svg b/linphone-desktop/assets/images/led_red.svg
similarity index 100%
rename from assets/images/led_red.svg
rename to linphone-desktop/assets/images/led_red.svg
diff --git a/assets/images/led_white.svg b/linphone-desktop/assets/images/led_white.svg
similarity index 100%
rename from assets/images/led_white.svg
rename to linphone-desktop/assets/images/led_white.svg
diff --git a/assets/images/linphone_logo.svg b/linphone-desktop/assets/images/linphone_logo.svg
similarity index 100%
rename from assets/images/linphone_logo.svg
rename to linphone-desktop/assets/images/linphone_logo.svg
diff --git a/assets/images/message_sign.svg b/linphone-desktop/assets/images/message_sign.svg
similarity index 100%
rename from assets/images/message_sign.svg
rename to linphone-desktop/assets/images/message_sign.svg
diff --git a/assets/images/micro.svg b/linphone-desktop/assets/images/micro.svg
similarity index 100%
rename from assets/images/micro.svg
rename to linphone-desktop/assets/images/micro.svg
diff --git a/assets/images/micro_off_hovered.svg b/linphone-desktop/assets/images/micro_off_hovered.svg
similarity index 100%
rename from assets/images/micro_off_hovered.svg
rename to linphone-desktop/assets/images/micro_off_hovered.svg
diff --git a/assets/images/micro_off_normal.svg b/linphone-desktop/assets/images/micro_off_normal.svg
similarity index 100%
rename from assets/images/micro_off_normal.svg
rename to linphone-desktop/assets/images/micro_off_normal.svg
diff --git a/assets/images/micro_off_pressed.svg b/linphone-desktop/assets/images/micro_off_pressed.svg
similarity index 100%
rename from assets/images/micro_off_pressed.svg
rename to linphone-desktop/assets/images/micro_off_pressed.svg
diff --git a/assets/images/micro_on_hovered.svg b/linphone-desktop/assets/images/micro_on_hovered.svg
similarity index 100%
rename from assets/images/micro_on_hovered.svg
rename to linphone-desktop/assets/images/micro_on_hovered.svg
diff --git a/assets/images/micro_on_normal.svg b/linphone-desktop/assets/images/micro_on_normal.svg
similarity index 100%
rename from assets/images/micro_on_normal.svg
rename to linphone-desktop/assets/images/micro_on_normal.svg
diff --git a/assets/images/micro_on_pressed.svg b/linphone-desktop/assets/images/micro_on_pressed.svg
similarity index 100%
rename from assets/images/micro_on_pressed.svg
rename to linphone-desktop/assets/images/micro_on_pressed.svg
diff --git a/assets/images/missed_incoming_call.svg b/linphone-desktop/assets/images/missed_incoming_call.svg
similarity index 100%
rename from assets/images/missed_incoming_call.svg
rename to linphone-desktop/assets/images/missed_incoming_call.svg
diff --git a/assets/images/missed_outgoing_call.svg b/linphone-desktop/assets/images/missed_outgoing_call.svg
similarity index 100%
rename from assets/images/missed_outgoing_call.svg
rename to linphone-desktop/assets/images/missed_outgoing_call.svg
diff --git a/assets/images/new_call_hovered.svg b/linphone-desktop/assets/images/new_call_hovered.svg
similarity index 100%
rename from assets/images/new_call_hovered.svg
rename to linphone-desktop/assets/images/new_call_hovered.svg
diff --git a/assets/images/new_call_normal.svg b/linphone-desktop/assets/images/new_call_normal.svg
similarity index 100%
rename from assets/images/new_call_normal.svg
rename to linphone-desktop/assets/images/new_call_normal.svg
diff --git a/assets/images/new_call_pressed.svg b/linphone-desktop/assets/images/new_call_pressed.svg
similarity index 100%
rename from assets/images/new_call_pressed.svg
rename to linphone-desktop/assets/images/new_call_pressed.svg
diff --git a/assets/images/new_conference_hovered.svg b/linphone-desktop/assets/images/new_conference_hovered.svg
similarity index 100%
rename from assets/images/new_conference_hovered.svg
rename to linphone-desktop/assets/images/new_conference_hovered.svg
diff --git a/assets/images/new_conference_normal.svg b/linphone-desktop/assets/images/new_conference_normal.svg
similarity index 100%
rename from assets/images/new_conference_normal.svg
rename to linphone-desktop/assets/images/new_conference_normal.svg
diff --git a/assets/images/new_conference_pressed.svg b/linphone-desktop/assets/images/new_conference_pressed.svg
similarity index 100%
rename from assets/images/new_conference_pressed.svg
rename to linphone-desktop/assets/images/new_conference_pressed.svg
diff --git a/assets/images/options_hovered.svg b/linphone-desktop/assets/images/options_hovered.svg
similarity index 100%
rename from assets/images/options_hovered.svg
rename to linphone-desktop/assets/images/options_hovered.svg
diff --git a/assets/images/options_normal.svg b/linphone-desktop/assets/images/options_normal.svg
similarity index 100%
rename from assets/images/options_normal.svg
rename to linphone-desktop/assets/images/options_normal.svg
diff --git a/assets/images/options_pressed.svg b/linphone-desktop/assets/images/options_pressed.svg
similarity index 100%
rename from assets/images/options_pressed.svg
rename to linphone-desktop/assets/images/options_pressed.svg
diff --git a/assets/images/outgoing_call.svg b/linphone-desktop/assets/images/outgoing_call.svg
similarity index 100%
rename from assets/images/outgoing_call.svg
rename to linphone-desktop/assets/images/outgoing_call.svg
diff --git a/assets/images/pause_off_hovered.svg b/linphone-desktop/assets/images/pause_off_hovered.svg
similarity index 100%
rename from assets/images/pause_off_hovered.svg
rename to linphone-desktop/assets/images/pause_off_hovered.svg
diff --git a/assets/images/pause_off_normal.svg b/linphone-desktop/assets/images/pause_off_normal.svg
similarity index 100%
rename from assets/images/pause_off_normal.svg
rename to linphone-desktop/assets/images/pause_off_normal.svg
diff --git a/assets/images/pause_off_pressed.svg b/linphone-desktop/assets/images/pause_off_pressed.svg
similarity index 100%
rename from assets/images/pause_off_pressed.svg
rename to linphone-desktop/assets/images/pause_off_pressed.svg
diff --git a/assets/images/pause_off_updating.svg b/linphone-desktop/assets/images/pause_off_updating.svg
similarity index 100%
rename from assets/images/pause_off_updating.svg
rename to linphone-desktop/assets/images/pause_off_updating.svg
diff --git a/assets/images/pause_on_hovered.svg b/linphone-desktop/assets/images/pause_on_hovered.svg
similarity index 100%
rename from assets/images/pause_on_hovered.svg
rename to linphone-desktop/assets/images/pause_on_hovered.svg
diff --git a/assets/images/pause_on_normal.svg b/linphone-desktop/assets/images/pause_on_normal.svg
similarity index 100%
rename from assets/images/pause_on_normal.svg
rename to linphone-desktop/assets/images/pause_on_normal.svg
diff --git a/assets/images/pause_on_pressed.svg b/linphone-desktop/assets/images/pause_on_pressed.svg
similarity index 100%
rename from assets/images/pause_on_pressed.svg
rename to linphone-desktop/assets/images/pause_on_pressed.svg
diff --git a/assets/images/pause_on_updating.svg b/linphone-desktop/assets/images/pause_on_updating.svg
similarity index 100%
rename from assets/images/pause_on_updating.svg
rename to linphone-desktop/assets/images/pause_on_updating.svg
diff --git a/assets/images/record_off.svg b/linphone-desktop/assets/images/record_off.svg
similarity index 100%
rename from assets/images/record_off.svg
rename to linphone-desktop/assets/images/record_off.svg
diff --git a/assets/images/record_on.svg b/linphone-desktop/assets/images/record_on.svg
similarity index 100%
rename from assets/images/record_on.svg
rename to linphone-desktop/assets/images/record_on.svg
diff --git a/assets/images/recording_sign.svg b/linphone-desktop/assets/images/recording_sign.svg
similarity index 100%
rename from assets/images/recording_sign.svg
rename to linphone-desktop/assets/images/recording_sign.svg
diff --git a/assets/images/screenshot_hovered.svg b/linphone-desktop/assets/images/screenshot_hovered.svg
similarity index 100%
rename from assets/images/screenshot_hovered.svg
rename to linphone-desktop/assets/images/screenshot_hovered.svg
diff --git a/assets/images/screenshot_normal.svg b/linphone-desktop/assets/images/screenshot_normal.svg
similarity index 100%
rename from assets/images/screenshot_normal.svg
rename to linphone-desktop/assets/images/screenshot_normal.svg
diff --git a/assets/images/screenshot_pressed.svg b/linphone-desktop/assets/images/screenshot_pressed.svg
similarity index 100%
rename from assets/images/screenshot_pressed.svg
rename to linphone-desktop/assets/images/screenshot_pressed.svg
diff --git a/assets/images/search.svg b/linphone-desktop/assets/images/search.svg
similarity index 100%
rename from assets/images/search.svg
rename to linphone-desktop/assets/images/search.svg
diff --git a/assets/images/settings_advanced_normal.svg b/linphone-desktop/assets/images/settings_advanced_normal.svg
similarity index 100%
rename from assets/images/settings_advanced_normal.svg
rename to linphone-desktop/assets/images/settings_advanced_normal.svg
diff --git a/assets/images/settings_advanced_selected.svg b/linphone-desktop/assets/images/settings_advanced_selected.svg
similarity index 100%
rename from assets/images/settings_advanced_selected.svg
rename to linphone-desktop/assets/images/settings_advanced_selected.svg
diff --git a/assets/images/settings_audio_normal.svg b/linphone-desktop/assets/images/settings_audio_normal.svg
similarity index 100%
rename from assets/images/settings_audio_normal.svg
rename to linphone-desktop/assets/images/settings_audio_normal.svg
diff --git a/assets/images/settings_audio_selected.svg b/linphone-desktop/assets/images/settings_audio_selected.svg
similarity index 100%
rename from assets/images/settings_audio_selected.svg
rename to linphone-desktop/assets/images/settings_audio_selected.svg
diff --git a/assets/images/settings_call_normal.svg b/linphone-desktop/assets/images/settings_call_normal.svg
similarity index 100%
rename from assets/images/settings_call_normal.svg
rename to linphone-desktop/assets/images/settings_call_normal.svg
diff --git a/assets/images/settings_call_selected.svg b/linphone-desktop/assets/images/settings_call_selected.svg
similarity index 100%
rename from assets/images/settings_call_selected.svg
rename to linphone-desktop/assets/images/settings_call_selected.svg
diff --git a/assets/images/settings_network_normal.svg b/linphone-desktop/assets/images/settings_network_normal.svg
similarity index 100%
rename from assets/images/settings_network_normal.svg
rename to linphone-desktop/assets/images/settings_network_normal.svg
diff --git a/assets/images/settings_network_selected.svg b/linphone-desktop/assets/images/settings_network_selected.svg
similarity index 100%
rename from assets/images/settings_network_selected.svg
rename to linphone-desktop/assets/images/settings_network_selected.svg
diff --git a/assets/images/settings_sip_accounts_normal.svg b/linphone-desktop/assets/images/settings_sip_accounts_normal.svg
similarity index 100%
rename from assets/images/settings_sip_accounts_normal.svg
rename to linphone-desktop/assets/images/settings_sip_accounts_normal.svg
diff --git a/assets/images/settings_sip_accounts_selected.svg b/linphone-desktop/assets/images/settings_sip_accounts_selected.svg
similarity index 100%
rename from assets/images/settings_sip_accounts_selected.svg
rename to linphone-desktop/assets/images/settings_sip_accounts_selected.svg
diff --git a/assets/images/settings_video_normal.svg b/linphone-desktop/assets/images/settings_video_normal.svg
similarity index 100%
rename from assets/images/settings_video_normal.svg
rename to linphone-desktop/assets/images/settings_video_normal.svg
diff --git a/assets/images/settings_video_selected.svg b/linphone-desktop/assets/images/settings_video_selected.svg
similarity index 100%
rename from assets/images/settings_video_selected.svg
rename to linphone-desktop/assets/images/settings_video_selected.svg
diff --git a/assets/images/snapshot_sign.svg b/linphone-desktop/assets/images/snapshot_sign.svg
similarity index 100%
rename from assets/images/snapshot_sign.svg
rename to linphone-desktop/assets/images/snapshot_sign.svg
diff --git a/assets/images/speaker.svg b/linphone-desktop/assets/images/speaker.svg
similarity index 100%
rename from assets/images/speaker.svg
rename to linphone-desktop/assets/images/speaker.svg
diff --git a/assets/images/speaker_off_hovered.svg b/linphone-desktop/assets/images/speaker_off_hovered.svg
similarity index 100%
rename from assets/images/speaker_off_hovered.svg
rename to linphone-desktop/assets/images/speaker_off_hovered.svg
diff --git a/assets/images/speaker_off_normal.svg b/linphone-desktop/assets/images/speaker_off_normal.svg
similarity index 100%
rename from assets/images/speaker_off_normal.svg
rename to linphone-desktop/assets/images/speaker_off_normal.svg
diff --git a/assets/images/speaker_off_pressed.svg b/linphone-desktop/assets/images/speaker_off_pressed.svg
similarity index 100%
rename from assets/images/speaker_off_pressed.svg
rename to linphone-desktop/assets/images/speaker_off_pressed.svg
diff --git a/assets/images/speaker_on_hovered.svg b/linphone-desktop/assets/images/speaker_on_hovered.svg
similarity index 100%
rename from assets/images/speaker_on_hovered.svg
rename to linphone-desktop/assets/images/speaker_on_hovered.svg
diff --git a/assets/images/speaker_on_normal.svg b/linphone-desktop/assets/images/speaker_on_normal.svg
similarity index 100%
rename from assets/images/speaker_on_normal.svg
rename to linphone-desktop/assets/images/speaker_on_normal.svg
diff --git a/assets/images/speaker_on_pressed.svg b/linphone-desktop/assets/images/speaker_on_pressed.svg
similarity index 100%
rename from assets/images/speaker_on_pressed.svg
rename to linphone-desktop/assets/images/speaker_on_pressed.svg
diff --git a/assets/images/tel_keypad_hovered.svg b/linphone-desktop/assets/images/tel_keypad_hovered.svg
similarity index 100%
rename from assets/images/tel_keypad_hovered.svg
rename to linphone-desktop/assets/images/tel_keypad_hovered.svg
diff --git a/assets/images/tel_keypad_normal.svg b/linphone-desktop/assets/images/tel_keypad_normal.svg
similarity index 100%
rename from assets/images/tel_keypad_normal.svg
rename to linphone-desktop/assets/images/tel_keypad_normal.svg
diff --git a/assets/images/tel_keypad_pressed.svg b/linphone-desktop/assets/images/tel_keypad_pressed.svg
similarity index 100%
rename from assets/images/tel_keypad_pressed.svg
rename to linphone-desktop/assets/images/tel_keypad_pressed.svg
diff --git a/assets/images/timeline_history.svg b/linphone-desktop/assets/images/timeline_history.svg
similarity index 100%
rename from assets/images/timeline_history.svg
rename to linphone-desktop/assets/images/timeline_history.svg
diff --git a/assets/images/tooltip_arrow_bottom.svg b/linphone-desktop/assets/images/tooltip_arrow_bottom.svg
similarity index 100%
rename from assets/images/tooltip_arrow_bottom.svg
rename to linphone-desktop/assets/images/tooltip_arrow_bottom.svg
diff --git a/assets/images/tooltip_arrow_left.svg b/linphone-desktop/assets/images/tooltip_arrow_left.svg
similarity index 100%
rename from assets/images/tooltip_arrow_left.svg
rename to linphone-desktop/assets/images/tooltip_arrow_left.svg
diff --git a/assets/images/tooltip_arrow_right.svg b/linphone-desktop/assets/images/tooltip_arrow_right.svg
similarity index 100%
rename from assets/images/tooltip_arrow_right.svg
rename to linphone-desktop/assets/images/tooltip_arrow_right.svg
diff --git a/assets/images/tooltip_arrow_top.svg b/linphone-desktop/assets/images/tooltip_arrow_top.svg
similarity index 100%
rename from assets/images/tooltip_arrow_top.svg
rename to linphone-desktop/assets/images/tooltip_arrow_top.svg
diff --git a/assets/images/transfer_hovered.svg b/linphone-desktop/assets/images/transfer_hovered.svg
similarity index 100%
rename from assets/images/transfer_hovered.svg
rename to linphone-desktop/assets/images/transfer_hovered.svg
diff --git a/assets/images/transfer_normal.svg b/linphone-desktop/assets/images/transfer_normal.svg
similarity index 100%
rename from assets/images/transfer_normal.svg
rename to linphone-desktop/assets/images/transfer_normal.svg
diff --git a/assets/images/transfer_pressed.svg b/linphone-desktop/assets/images/transfer_pressed.svg
similarity index 100%
rename from assets/images/transfer_pressed.svg
rename to linphone-desktop/assets/images/transfer_pressed.svg
diff --git a/assets/images/update_sign.svg b/linphone-desktop/assets/images/update_sign.svg
similarity index 100%
rename from assets/images/update_sign.svg
rename to linphone-desktop/assets/images/update_sign.svg
diff --git a/assets/images/video_call_accept_hovered.svg b/linphone-desktop/assets/images/video_call_accept_hovered.svg
similarity index 100%
rename from assets/images/video_call_accept_hovered.svg
rename to linphone-desktop/assets/images/video_call_accept_hovered.svg
diff --git a/assets/images/video_call_accept_normal.svg b/linphone-desktop/assets/images/video_call_accept_normal.svg
similarity index 100%
rename from assets/images/video_call_accept_normal.svg
rename to linphone-desktop/assets/images/video_call_accept_normal.svg
diff --git a/assets/images/video_call_accept_pressed.svg b/linphone-desktop/assets/images/video_call_accept_pressed.svg
similarity index 100%
rename from assets/images/video_call_accept_pressed.svg
rename to linphone-desktop/assets/images/video_call_accept_pressed.svg
diff --git a/assets/images/video_call_hovered.svg b/linphone-desktop/assets/images/video_call_hovered.svg
similarity index 100%
rename from assets/images/video_call_hovered.svg
rename to linphone-desktop/assets/images/video_call_hovered.svg
diff --git a/assets/images/video_call_normal.svg b/linphone-desktop/assets/images/video_call_normal.svg
similarity index 100%
rename from assets/images/video_call_normal.svg
rename to linphone-desktop/assets/images/video_call_normal.svg
diff --git a/assets/images/video_call_pressed.svg b/linphone-desktop/assets/images/video_call_pressed.svg
similarity index 100%
rename from assets/images/video_call_pressed.svg
rename to linphone-desktop/assets/images/video_call_pressed.svg
diff --git a/assets/images/warning.svg b/linphone-desktop/assets/images/warning.svg
similarity index 100%
rename from assets/images/warning.svg
rename to linphone-desktop/assets/images/warning.svg
diff --git a/assets/languages/CMakeLists.txt b/linphone-desktop/assets/languages/CMakeLists.txt
similarity index 100%
rename from assets/languages/CMakeLists.txt
rename to linphone-desktop/assets/languages/CMakeLists.txt
diff --git a/assets/languages/ar.ts b/linphone-desktop/assets/languages/ar.ts
similarity index 100%
rename from assets/languages/ar.ts
rename to linphone-desktop/assets/languages/ar.ts
diff --git a/assets/languages/az.ts b/linphone-desktop/assets/languages/az.ts
similarity index 100%
rename from assets/languages/az.ts
rename to linphone-desktop/assets/languages/az.ts
diff --git a/assets/languages/az@latin.ts b/linphone-desktop/assets/languages/az@latin.ts
similarity index 100%
rename from assets/languages/az@latin.ts
rename to linphone-desktop/assets/languages/az@latin.ts
diff --git a/assets/languages/cs.ts b/linphone-desktop/assets/languages/cs.ts
similarity index 100%
rename from assets/languages/cs.ts
rename to linphone-desktop/assets/languages/cs.ts
diff --git a/assets/languages/de.ts b/linphone-desktop/assets/languages/de.ts
similarity index 100%
rename from assets/languages/de.ts
rename to linphone-desktop/assets/languages/de.ts
diff --git a/assets/languages/de_DE.ts b/linphone-desktop/assets/languages/de_DE.ts
similarity index 100%
rename from assets/languages/de_DE.ts
rename to linphone-desktop/assets/languages/de_DE.ts
diff --git a/assets/languages/el.ts b/linphone-desktop/assets/languages/el.ts
similarity index 100%
rename from assets/languages/el.ts
rename to linphone-desktop/assets/languages/el.ts
diff --git a/assets/languages/en.ts b/linphone-desktop/assets/languages/en.ts
similarity index 100%
rename from assets/languages/en.ts
rename to linphone-desktop/assets/languages/en.ts
diff --git a/assets/languages/es.ts b/linphone-desktop/assets/languages/es.ts
similarity index 100%
rename from assets/languages/es.ts
rename to linphone-desktop/assets/languages/es.ts
diff --git a/assets/languages/es_AR.ts b/linphone-desktop/assets/languages/es_AR.ts
similarity index 100%
rename from assets/languages/es_AR.ts
rename to linphone-desktop/assets/languages/es_AR.ts
diff --git a/assets/languages/fi.ts b/linphone-desktop/assets/languages/fi.ts
similarity index 100%
rename from assets/languages/fi.ts
rename to linphone-desktop/assets/languages/fi.ts
diff --git a/assets/languages/fr_FR.ts b/linphone-desktop/assets/languages/fr_FR.ts
similarity index 100%
rename from assets/languages/fr_FR.ts
rename to linphone-desktop/assets/languages/fr_FR.ts
diff --git a/assets/languages/he.ts b/linphone-desktop/assets/languages/he.ts
similarity index 100%
rename from assets/languages/he.ts
rename to linphone-desktop/assets/languages/he.ts
diff --git a/assets/languages/hu.ts b/linphone-desktop/assets/languages/hu.ts
similarity index 100%
rename from assets/languages/hu.ts
rename to linphone-desktop/assets/languages/hu.ts
diff --git a/assets/languages/it.ts b/linphone-desktop/assets/languages/it.ts
similarity index 100%
rename from assets/languages/it.ts
rename to linphone-desktop/assets/languages/it.ts
diff --git a/assets/languages/ja.ts b/linphone-desktop/assets/languages/ja.ts
similarity index 100%
rename from assets/languages/ja.ts
rename to linphone-desktop/assets/languages/ja.ts
diff --git a/assets/languages/ka.ts b/linphone-desktop/assets/languages/ka.ts
similarity index 100%
rename from assets/languages/ka.ts
rename to linphone-desktop/assets/languages/ka.ts
diff --git a/assets/languages/ko_KR.ts b/linphone-desktop/assets/languages/ko_KR.ts
similarity index 100%
rename from assets/languages/ko_KR.ts
rename to linphone-desktop/assets/languages/ko_KR.ts
diff --git a/assets/languages/lt.ts b/linphone-desktop/assets/languages/lt.ts
similarity index 100%
rename from assets/languages/lt.ts
rename to linphone-desktop/assets/languages/lt.ts
diff --git a/assets/languages/mk_MK.ts b/linphone-desktop/assets/languages/mk_MK.ts
similarity index 100%
rename from assets/languages/mk_MK.ts
rename to linphone-desktop/assets/languages/mk_MK.ts
diff --git a/assets/languages/nb_NO.ts b/linphone-desktop/assets/languages/nb_NO.ts
similarity index 100%
rename from assets/languages/nb_NO.ts
rename to linphone-desktop/assets/languages/nb_NO.ts
diff --git a/assets/languages/nl.ts b/linphone-desktop/assets/languages/nl.ts
similarity index 100%
rename from assets/languages/nl.ts
rename to linphone-desktop/assets/languages/nl.ts
diff --git a/assets/languages/pl.ts b/linphone-desktop/assets/languages/pl.ts
similarity index 100%
rename from assets/languages/pl.ts
rename to linphone-desktop/assets/languages/pl.ts
diff --git a/assets/languages/pl_PL.ts b/linphone-desktop/assets/languages/pl_PL.ts
similarity index 100%
rename from assets/languages/pl_PL.ts
rename to linphone-desktop/assets/languages/pl_PL.ts
diff --git a/assets/languages/pt_BR.ts b/linphone-desktop/assets/languages/pt_BR.ts
similarity index 100%
rename from assets/languages/pt_BR.ts
rename to linphone-desktop/assets/languages/pt_BR.ts
diff --git a/assets/languages/ru.ts b/linphone-desktop/assets/languages/ru.ts
similarity index 100%
rename from assets/languages/ru.ts
rename to linphone-desktop/assets/languages/ru.ts
diff --git a/assets/languages/ru_RU.ts b/linphone-desktop/assets/languages/ru_RU.ts
similarity index 100%
rename from assets/languages/ru_RU.ts
rename to linphone-desktop/assets/languages/ru_RU.ts
diff --git a/assets/languages/sr.ts b/linphone-desktop/assets/languages/sr.ts
similarity index 100%
rename from assets/languages/sr.ts
rename to linphone-desktop/assets/languages/sr.ts
diff --git a/assets/languages/sv.ts b/linphone-desktop/assets/languages/sv.ts
similarity index 100%
rename from assets/languages/sv.ts
rename to linphone-desktop/assets/languages/sv.ts
diff --git a/assets/languages/tr.ts b/linphone-desktop/assets/languages/tr.ts
similarity index 100%
rename from assets/languages/tr.ts
rename to linphone-desktop/assets/languages/tr.ts
diff --git a/assets/languages/uk.ts b/linphone-desktop/assets/languages/uk.ts
similarity index 100%
rename from assets/languages/uk.ts
rename to linphone-desktop/assets/languages/uk.ts
diff --git a/assets/languages/zh-Hant.ts b/linphone-desktop/assets/languages/zh-Hant.ts
similarity index 100%
rename from assets/languages/zh-Hant.ts
rename to linphone-desktop/assets/languages/zh-Hant.ts
diff --git a/assets/languages/zh.ts b/linphone-desktop/assets/languages/zh.ts
similarity index 100%
rename from assets/languages/zh.ts
rename to linphone-desktop/assets/languages/zh.ts
diff --git a/assets/languages/zh_CN.GB2312.ts b/linphone-desktop/assets/languages/zh_CN.GB2312.ts
similarity index 100%
rename from assets/languages/zh_CN.GB2312.ts
rename to linphone-desktop/assets/languages/zh_CN.GB2312.ts
diff --git a/assets/languages/zh_CN.ts b/linphone-desktop/assets/languages/zh_CN.ts
similarity index 100%
rename from assets/languages/zh_CN.ts
rename to linphone-desktop/assets/languages/zh_CN.ts
diff --git a/assets/languages/zh_TW.ts b/linphone-desktop/assets/languages/zh_TW.ts
similarity index 100%
rename from assets/languages/zh_TW.ts
rename to linphone-desktop/assets/languages/zh_TW.ts
diff --git a/assets/linphone.desktop.cmake b/linphone-desktop/assets/linphone.desktop.cmake
similarity index 100%
rename from assets/linphone.desktop.cmake
rename to linphone-desktop/assets/linphone.desktop.cmake
diff --git a/assets/linphonerc-factory b/linphone-desktop/assets/linphonerc-factory
similarity index 100%
rename from assets/linphonerc-factory
rename to linphone-desktop/assets/linphonerc-factory
diff --git a/build/CMakeLists.txt b/linphone-desktop/build/CMakeLists.txt
similarity index 100%
rename from build/CMakeLists.txt
rename to linphone-desktop/build/CMakeLists.txt
diff --git a/build/rpm/linphone.spec.cmake b/linphone-desktop/build/rpm/linphone.spec.cmake
similarity index 100%
rename from build/rpm/linphone.spec.cmake
rename to linphone-desktop/build/rpm/linphone.spec.cmake
diff --git a/build/rpm/qt5.spec b/linphone-desktop/build/rpm/qt5.spec
similarity index 100%
rename from build/rpm/qt5.spec
rename to linphone-desktop/build/rpm/qt5.spec
diff --git a/cmake/FindMinizip.cmake b/linphone-desktop/cmake/FindMinizip.cmake
similarity index 100%
rename from cmake/FindMinizip.cmake
rename to linphone-desktop/cmake/FindMinizip.cmake
diff --git a/cmake_builder/CMakeLists.txt b/linphone-desktop/cmake_builder/CMakeLists.txt
similarity index 100%
rename from cmake_builder/CMakeLists.txt
rename to linphone-desktop/cmake_builder/CMakeLists.txt
diff --git a/cmake_builder/additional_steps.cmake b/linphone-desktop/cmake_builder/additional_steps.cmake
similarity index 100%
rename from cmake_builder/additional_steps.cmake
rename to linphone-desktop/cmake_builder/additional_steps.cmake
diff --git a/cmake_builder/install.cmake b/linphone-desktop/cmake_builder/install.cmake
similarity index 100%
rename from cmake_builder/install.cmake
rename to linphone-desktop/cmake_builder/install.cmake
diff --git a/cmake_builder/linphone_package/CMakeLists.txt b/linphone-desktop/cmake_builder/linphone_package/CMakeLists.txt
similarity index 100%
rename from cmake_builder/linphone_package/CMakeLists.txt
rename to linphone-desktop/cmake_builder/linphone_package/CMakeLists.txt
diff --git a/cmake_builder/linphone_package/macos/Info.plist.in b/linphone-desktop/cmake_builder/linphone_package/macos/Info.plist.in
similarity index 100%
rename from cmake_builder/linphone_package/macos/Info.plist.in
rename to linphone-desktop/cmake_builder/linphone_package/macos/Info.plist.in
diff --git a/cmake_builder/linphone_package/macos/background_dmg.jpg b/linphone-desktop/cmake_builder/linphone_package/macos/background_dmg.jpg
similarity index 100%
rename from cmake_builder/linphone_package/macos/background_dmg.jpg
rename to linphone-desktop/cmake_builder/linphone_package/macos/background_dmg.jpg
diff --git a/cmake_builder/linphone_package/macos/linphone.icns b/linphone-desktop/cmake_builder/linphone_package/macos/linphone.icns
similarity index 100%
rename from cmake_builder/linphone_package/macos/linphone.icns
rename to linphone-desktop/cmake_builder/linphone_package/macos/linphone.icns
diff --git a/cmake_builder/linphone_package/macos/linphone_dmg.scpt.in b/linphone-desktop/cmake_builder/linphone_package/macos/linphone_dmg.scpt.in
similarity index 100%
rename from cmake_builder/linphone_package/macos/linphone_dmg.scpt.in
rename to linphone-desktop/cmake_builder/linphone_package/macos/linphone_dmg.scpt.in
diff --git a/cmake_builder/linphone_package/macos/packaging.cmake.in b/linphone-desktop/cmake_builder/linphone_package/macos/packaging.cmake.in
similarity index 100%
rename from cmake_builder/linphone_package/macos/packaging.cmake.in
rename to linphone-desktop/cmake_builder/linphone_package/macos/packaging.cmake.in
diff --git a/cmake_builder/linphone_package/sdk_content/antlr3c.list.in b/linphone-desktop/cmake_builder/linphone_package/sdk_content/antlr3c.list.in
similarity index 100%
rename from cmake_builder/linphone_package/sdk_content/antlr3c.list.in
rename to linphone-desktop/cmake_builder/linphone_package/sdk_content/antlr3c.list.in
diff --git a/cmake_builder/linphone_package/sdk_content/bctoolbox.list.in b/linphone-desktop/cmake_builder/linphone_package/sdk_content/bctoolbox.list.in
similarity index 100%
rename from cmake_builder/linphone_package/sdk_content/bctoolbox.list.in
rename to linphone-desktop/cmake_builder/linphone_package/sdk_content/bctoolbox.list.in
diff --git a/cmake_builder/linphone_package/sdk_content/bcunit.list.in b/linphone-desktop/cmake_builder/linphone_package/sdk_content/bcunit.list.in
similarity index 100%
rename from cmake_builder/linphone_package/sdk_content/bcunit.list.in
rename to linphone-desktop/cmake_builder/linphone_package/sdk_content/bcunit.list.in
diff --git a/cmake_builder/linphone_package/sdk_content/bellesip.list.in b/linphone-desktop/cmake_builder/linphone_package/sdk_content/bellesip.list.in
similarity index 100%
rename from cmake_builder/linphone_package/sdk_content/bellesip.list.in
rename to linphone-desktop/cmake_builder/linphone_package/sdk_content/bellesip.list.in
diff --git a/cmake_builder/linphone_package/sdk_content/bv16.list.in b/linphone-desktop/cmake_builder/linphone_package/sdk_content/bv16.list.in
similarity index 100%
rename from cmake_builder/linphone_package/sdk_content/bv16.list.in
rename to linphone-desktop/cmake_builder/linphone_package/sdk_content/bv16.list.in
diff --git a/cmake_builder/linphone_package/sdk_content/bzrtp.list.in b/linphone-desktop/cmake_builder/linphone_package/sdk_content/bzrtp.list.in
similarity index 100%
rename from cmake_builder/linphone_package/sdk_content/bzrtp.list.in
rename to linphone-desktop/cmake_builder/linphone_package/sdk_content/bzrtp.list.in
diff --git a/cmake_builder/linphone_package/sdk_content/ffmpeg.list.in b/linphone-desktop/cmake_builder/linphone_package/sdk_content/ffmpeg.list.in
similarity index 100%
rename from cmake_builder/linphone_package/sdk_content/ffmpeg.list.in
rename to linphone-desktop/cmake_builder/linphone_package/sdk_content/ffmpeg.list.in
diff --git a/cmake_builder/linphone_package/sdk_content/gsm.list.in b/linphone-desktop/cmake_builder/linphone_package/sdk_content/gsm.list.in
similarity index 100%
rename from cmake_builder/linphone_package/sdk_content/gsm.list.in
rename to linphone-desktop/cmake_builder/linphone_package/sdk_content/gsm.list.in
diff --git a/cmake_builder/linphone_package/sdk_content/linphone.list.in b/linphone-desktop/cmake_builder/linphone_package/sdk_content/linphone.list.in
similarity index 100%
rename from cmake_builder/linphone_package/sdk_content/linphone.list.in
rename to linphone-desktop/cmake_builder/linphone_package/sdk_content/linphone.list.in
diff --git a/cmake_builder/linphone_package/sdk_content/linphonecxx.list.in b/linphone-desktop/cmake_builder/linphone_package/sdk_content/linphonecxx.list.in
similarity index 100%
rename from cmake_builder/linphone_package/sdk_content/linphonecxx.list.in
rename to linphone-desktop/cmake_builder/linphone_package/sdk_content/linphonecxx.list.in
diff --git a/cmake_builder/linphone_package/sdk_content/mbedtls.list.in b/linphone-desktop/cmake_builder/linphone_package/sdk_content/mbedtls.list.in
similarity index 100%
rename from cmake_builder/linphone_package/sdk_content/mbedtls.list.in
rename to linphone-desktop/cmake_builder/linphone_package/sdk_content/mbedtls.list.in
diff --git a/cmake_builder/linphone_package/sdk_content/ms2.list.in b/linphone-desktop/cmake_builder/linphone_package/sdk_content/ms2.list.in
similarity index 100%
rename from cmake_builder/linphone_package/sdk_content/ms2.list.in
rename to linphone-desktop/cmake_builder/linphone_package/sdk_content/ms2.list.in
diff --git a/cmake_builder/linphone_package/sdk_content/ms2plugins.list.in b/linphone-desktop/cmake_builder/linphone_package/sdk_content/ms2plugins.list.in
similarity index 100%
rename from cmake_builder/linphone_package/sdk_content/ms2plugins.list.in
rename to linphone-desktop/cmake_builder/linphone_package/sdk_content/ms2plugins.list.in
diff --git a/cmake_builder/linphone_package/sdk_content/opus.list.in b/linphone-desktop/cmake_builder/linphone_package/sdk_content/opus.list.in
similarity index 100%
rename from cmake_builder/linphone_package/sdk_content/opus.list.in
rename to linphone-desktop/cmake_builder/linphone_package/sdk_content/opus.list.in
diff --git a/cmake_builder/linphone_package/sdk_content/ortp.list.in b/linphone-desktop/cmake_builder/linphone_package/sdk_content/ortp.list.in
similarity index 100%
rename from cmake_builder/linphone_package/sdk_content/ortp.list.in
rename to linphone-desktop/cmake_builder/linphone_package/sdk_content/ortp.list.in
diff --git a/cmake_builder/linphone_package/sdk_content/polarssl.list.in b/linphone-desktop/cmake_builder/linphone_package/sdk_content/polarssl.list.in
similarity index 100%
rename from cmake_builder/linphone_package/sdk_content/polarssl.list.in
rename to linphone-desktop/cmake_builder/linphone_package/sdk_content/polarssl.list.in
diff --git a/cmake_builder/linphone_package/sdk_content/speex.list.in b/linphone-desktop/cmake_builder/linphone_package/sdk_content/speex.list.in
similarity index 100%
rename from cmake_builder/linphone_package/sdk_content/speex.list.in
rename to linphone-desktop/cmake_builder/linphone_package/sdk_content/speex.list.in
diff --git a/cmake_builder/linphone_package/sdk_content/sqlite3.list.in b/linphone-desktop/cmake_builder/linphone_package/sdk_content/sqlite3.list.in
similarity index 100%
rename from cmake_builder/linphone_package/sdk_content/sqlite3.list.in
rename to linphone-desktop/cmake_builder/linphone_package/sdk_content/sqlite3.list.in
diff --git a/cmake_builder/linphone_package/sdk_content/srtp.list.in b/linphone-desktop/cmake_builder/linphone_package/sdk_content/srtp.list.in
similarity index 100%
rename from cmake_builder/linphone_package/sdk_content/srtp.list.in
rename to linphone-desktop/cmake_builder/linphone_package/sdk_content/srtp.list.in
diff --git a/cmake_builder/linphone_package/sdk_content/vcard.list.in b/linphone-desktop/cmake_builder/linphone_package/sdk_content/vcard.list.in
similarity index 100%
rename from cmake_builder/linphone_package/sdk_content/vcard.list.in
rename to linphone-desktop/cmake_builder/linphone_package/sdk_content/vcard.list.in
diff --git a/cmake_builder/linphone_package/sdk_content/xml2.list.in b/linphone-desktop/cmake_builder/linphone_package/sdk_content/xml2.list.in
similarity index 100%
rename from cmake_builder/linphone_package/sdk_content/xml2.list.in
rename to linphone-desktop/cmake_builder/linphone_package/sdk_content/xml2.list.in
diff --git a/cmake_builder/linphone_package/sdk_content/zlib.list.in b/linphone-desktop/cmake_builder/linphone_package/sdk_content/zlib.list.in
similarity index 100%
rename from cmake_builder/linphone_package/sdk_content/zlib.list.in
rename to linphone-desktop/cmake_builder/linphone_package/sdk_content/zlib.list.in
diff --git a/cmake_builder/linphone_package/windows/NSIS.template.in b/linphone-desktop/cmake_builder/linphone_package/windows/NSIS.template.in
similarity index 100%
rename from cmake_builder/linphone_package/windows/NSIS.template.in
rename to linphone-desktop/cmake_builder/linphone_package/windows/NSIS.template.in
diff --git a/cmake_builder/linphone_package/windows/install.nsi.in b/linphone-desktop/cmake_builder/linphone_package/windows/install.nsi.in
similarity index 100%
rename from cmake_builder/linphone_package/windows/install.nsi.in
rename to linphone-desktop/cmake_builder/linphone_package/windows/install.nsi.in
diff --git a/cmake_builder/linphone_package/windows/nsis_banner.bmp b/linphone-desktop/cmake_builder/linphone_package/windows/nsis_banner.bmp
similarity index 100%
rename from cmake_builder/linphone_package/windows/nsis_banner.bmp
rename to linphone-desktop/cmake_builder/linphone_package/windows/nsis_banner.bmp
diff --git a/cmake_builder/linphone_package/windows/packaging.cmake.in b/linphone-desktop/cmake_builder/linphone_package/windows/packaging.cmake.in
similarity index 100%
rename from cmake_builder/linphone_package/windows/packaging.cmake.in
rename to linphone-desktop/cmake_builder/linphone_package/windows/packaging.cmake.in
diff --git a/cmake_builder/linphone_package/windows/signtool.py b/linphone-desktop/cmake_builder/linphone_package/windows/signtool.py
similarity index 100%
rename from cmake_builder/linphone_package/windows/signtool.py
rename to linphone-desktop/cmake_builder/linphone_package/windows/signtool.py
diff --git a/cmake_builder/linphone_package/windows/uninstall.nsi.in b/linphone-desktop/cmake_builder/linphone_package/windows/uninstall.nsi.in
similarity index 100%
rename from cmake_builder/linphone_package/windows/uninstall.nsi.in
rename to linphone-desktop/cmake_builder/linphone_package/windows/uninstall.nsi.in
diff --git a/cmake_builder/linphone_package/windows/winshortcut.vbs.in b/linphone-desktop/cmake_builder/linphone_package/windows/winshortcut.vbs.in
similarity index 100%
rename from cmake_builder/linphone_package/windows/winshortcut.vbs.in
rename to linphone-desktop/cmake_builder/linphone_package/windows/winshortcut.vbs.in
diff --git a/cmake_builder/linphoneqt.cmake b/linphone-desktop/cmake_builder/linphoneqt.cmake
similarity index 100%
rename from cmake_builder/linphoneqt.cmake
rename to linphone-desktop/cmake_builder/linphoneqt.cmake
diff --git a/resources.qrc b/linphone-desktop/resources.qrc
similarity index 100%
rename from resources.qrc
rename to linphone-desktop/resources.qrc
diff --git a/src/app/App.cpp b/linphone-desktop/src/app/App.cpp
similarity index 100%
rename from src/app/App.cpp
rename to linphone-desktop/src/app/App.cpp
diff --git a/src/app/App.hpp b/linphone-desktop/src/app/App.hpp
similarity index 100%
rename from src/app/App.hpp
rename to linphone-desktop/src/app/App.hpp
diff --git a/src/app/AppController.cpp b/linphone-desktop/src/app/AppController.cpp
similarity index 100%
rename from src/app/AppController.cpp
rename to linphone-desktop/src/app/AppController.cpp
diff --git a/src/app/AppController.hpp b/linphone-desktop/src/app/AppController.hpp
similarity index 100%
rename from src/app/AppController.hpp
rename to linphone-desktop/src/app/AppController.hpp
diff --git a/src/app/cli/Cli.cpp b/linphone-desktop/src/app/cli/Cli.cpp
similarity index 100%
rename from src/app/cli/Cli.cpp
rename to linphone-desktop/src/app/cli/Cli.cpp
diff --git a/src/app/cli/Cli.hpp b/linphone-desktop/src/app/cli/Cli.hpp
similarity index 100%
rename from src/app/cli/Cli.hpp
rename to linphone-desktop/src/app/cli/Cli.hpp
diff --git a/src/app/logger/Logger.cpp b/linphone-desktop/src/app/logger/Logger.cpp
similarity index 100%
rename from src/app/logger/Logger.cpp
rename to linphone-desktop/src/app/logger/Logger.cpp
diff --git a/src/app/logger/Logger.hpp b/linphone-desktop/src/app/logger/Logger.hpp
similarity index 100%
rename from src/app/logger/Logger.hpp
rename to linphone-desktop/src/app/logger/Logger.hpp
diff --git a/src/app/main.cpp b/linphone-desktop/src/app/main.cpp
similarity index 100%
rename from src/app/main.cpp
rename to linphone-desktop/src/app/main.cpp
diff --git a/src/app/paths/Paths.cpp b/linphone-desktop/src/app/paths/Paths.cpp
similarity index 100%
rename from src/app/paths/Paths.cpp
rename to linphone-desktop/src/app/paths/Paths.cpp
diff --git a/src/app/paths/Paths.hpp b/linphone-desktop/src/app/paths/Paths.hpp
similarity index 100%
rename from src/app/paths/Paths.hpp
rename to linphone-desktop/src/app/paths/Paths.hpp
diff --git a/src/app/providers/AvatarProvider.cpp b/linphone-desktop/src/app/providers/AvatarProvider.cpp
similarity index 100%
rename from src/app/providers/AvatarProvider.cpp
rename to linphone-desktop/src/app/providers/AvatarProvider.cpp
diff --git a/src/app/providers/AvatarProvider.hpp b/linphone-desktop/src/app/providers/AvatarProvider.hpp
similarity index 100%
rename from src/app/providers/AvatarProvider.hpp
rename to linphone-desktop/src/app/providers/AvatarProvider.hpp
diff --git a/src/app/providers/ImageProvider.cpp b/linphone-desktop/src/app/providers/ImageProvider.cpp
similarity index 100%
rename from src/app/providers/ImageProvider.cpp
rename to linphone-desktop/src/app/providers/ImageProvider.cpp
diff --git a/src/app/providers/ImageProvider.hpp b/linphone-desktop/src/app/providers/ImageProvider.hpp
similarity index 100%
rename from src/app/providers/ImageProvider.hpp
rename to linphone-desktop/src/app/providers/ImageProvider.hpp
diff --git a/src/app/providers/ThumbnailProvider.cpp b/linphone-desktop/src/app/providers/ThumbnailProvider.cpp
similarity index 100%
rename from src/app/providers/ThumbnailProvider.cpp
rename to linphone-desktop/src/app/providers/ThumbnailProvider.cpp
diff --git a/src/app/providers/ThumbnailProvider.hpp b/linphone-desktop/src/app/providers/ThumbnailProvider.hpp
similarity index 100%
rename from src/app/providers/ThumbnailProvider.hpp
rename to linphone-desktop/src/app/providers/ThumbnailProvider.hpp
diff --git a/src/app/single-application/SingleApplication.cpp b/linphone-desktop/src/app/single-application/SingleApplication.cpp
similarity index 100%
rename from src/app/single-application/SingleApplication.cpp
rename to linphone-desktop/src/app/single-application/SingleApplication.cpp
diff --git a/src/app/single-application/SingleApplication.hpp b/linphone-desktop/src/app/single-application/SingleApplication.hpp
similarity index 100%
rename from src/app/single-application/SingleApplication.hpp
rename to linphone-desktop/src/app/single-application/SingleApplication.hpp
diff --git a/src/app/single-application/SingleApplicationDBus.cpp b/linphone-desktop/src/app/single-application/SingleApplicationDBus.cpp
similarity index 100%
rename from src/app/single-application/SingleApplicationDBus.cpp
rename to linphone-desktop/src/app/single-application/SingleApplicationDBus.cpp
diff --git a/src/app/single-application/SingleApplicationDBusPrivate.hpp b/linphone-desktop/src/app/single-application/SingleApplicationDBusPrivate.hpp
similarity index 100%
rename from src/app/single-application/SingleApplicationDBusPrivate.hpp
rename to linphone-desktop/src/app/single-application/SingleApplicationDBusPrivate.hpp
diff --git a/src/app/single-application/SingleApplicationPrivate.hpp b/linphone-desktop/src/app/single-application/SingleApplicationPrivate.hpp
similarity index 100%
rename from src/app/single-application/SingleApplicationPrivate.hpp
rename to linphone-desktop/src/app/single-application/SingleApplicationPrivate.hpp
diff --git a/src/app/translator/DefaultTranslator.cpp b/linphone-desktop/src/app/translator/DefaultTranslator.cpp
similarity index 100%
rename from src/app/translator/DefaultTranslator.cpp
rename to linphone-desktop/src/app/translator/DefaultTranslator.cpp
diff --git a/src/app/translator/DefaultTranslator.hpp b/linphone-desktop/src/app/translator/DefaultTranslator.hpp
similarity index 100%
rename from src/app/translator/DefaultTranslator.hpp
rename to linphone-desktop/src/app/translator/DefaultTranslator.hpp
diff --git a/src/components/Components.hpp b/linphone-desktop/src/components/Components.hpp
similarity index 100%
rename from src/components/Components.hpp
rename to linphone-desktop/src/components/Components.hpp
diff --git a/src/components/assistant/AssistantModel.cpp b/linphone-desktop/src/components/assistant/AssistantModel.cpp
similarity index 100%
rename from src/components/assistant/AssistantModel.cpp
rename to linphone-desktop/src/components/assistant/AssistantModel.cpp
diff --git a/src/components/assistant/AssistantModel.hpp b/linphone-desktop/src/components/assistant/AssistantModel.hpp
similarity index 100%
rename from src/components/assistant/AssistantModel.hpp
rename to linphone-desktop/src/components/assistant/AssistantModel.hpp
diff --git a/src/components/authentication/AuthenticationNotifier.cpp b/linphone-desktop/src/components/authentication/AuthenticationNotifier.cpp
similarity index 100%
rename from src/components/authentication/AuthenticationNotifier.cpp
rename to linphone-desktop/src/components/authentication/AuthenticationNotifier.cpp
diff --git a/src/components/authentication/AuthenticationNotifier.hpp b/linphone-desktop/src/components/authentication/AuthenticationNotifier.hpp
similarity index 100%
rename from src/components/authentication/AuthenticationNotifier.hpp
rename to linphone-desktop/src/components/authentication/AuthenticationNotifier.hpp
diff --git a/src/components/call/CallModel.cpp b/linphone-desktop/src/components/call/CallModel.cpp
similarity index 100%
rename from src/components/call/CallModel.cpp
rename to linphone-desktop/src/components/call/CallModel.cpp
diff --git a/src/components/call/CallModel.hpp b/linphone-desktop/src/components/call/CallModel.hpp
similarity index 100%
rename from src/components/call/CallModel.hpp
rename to linphone-desktop/src/components/call/CallModel.hpp
diff --git a/src/components/calls/CallsListModel.cpp b/linphone-desktop/src/components/calls/CallsListModel.cpp
similarity index 100%
rename from src/components/calls/CallsListModel.cpp
rename to linphone-desktop/src/components/calls/CallsListModel.cpp
diff --git a/src/components/calls/CallsListModel.hpp b/linphone-desktop/src/components/calls/CallsListModel.hpp
similarity index 100%
rename from src/components/calls/CallsListModel.hpp
rename to linphone-desktop/src/components/calls/CallsListModel.hpp
diff --git a/src/components/calls/CallsListProxyModel.cpp b/linphone-desktop/src/components/calls/CallsListProxyModel.cpp
similarity index 100%
rename from src/components/calls/CallsListProxyModel.cpp
rename to linphone-desktop/src/components/calls/CallsListProxyModel.cpp
diff --git a/src/components/calls/CallsListProxyModel.hpp b/linphone-desktop/src/components/calls/CallsListProxyModel.hpp
similarity index 100%
rename from src/components/calls/CallsListProxyModel.hpp
rename to linphone-desktop/src/components/calls/CallsListProxyModel.hpp
diff --git a/src/components/camera/Camera.cpp b/linphone-desktop/src/components/camera/Camera.cpp
similarity index 100%
rename from src/components/camera/Camera.cpp
rename to linphone-desktop/src/components/camera/Camera.cpp
diff --git a/src/components/camera/Camera.hpp b/linphone-desktop/src/components/camera/Camera.hpp
similarity index 100%
rename from src/components/camera/Camera.hpp
rename to linphone-desktop/src/components/camera/Camera.hpp
diff --git a/src/components/camera/CameraPreview.cpp b/linphone-desktop/src/components/camera/CameraPreview.cpp
similarity index 100%
rename from src/components/camera/CameraPreview.cpp
rename to linphone-desktop/src/components/camera/CameraPreview.cpp
diff --git a/src/components/camera/CameraPreview.hpp b/linphone-desktop/src/components/camera/CameraPreview.hpp
similarity index 100%
rename from src/components/camera/CameraPreview.hpp
rename to linphone-desktop/src/components/camera/CameraPreview.hpp
diff --git a/src/components/camera/MSFunctions.cpp b/linphone-desktop/src/components/camera/MSFunctions.cpp
similarity index 100%
rename from src/components/camera/MSFunctions.cpp
rename to linphone-desktop/src/components/camera/MSFunctions.cpp
diff --git a/src/components/camera/MSFunctions.hpp b/linphone-desktop/src/components/camera/MSFunctions.hpp
similarity index 100%
rename from src/components/camera/MSFunctions.hpp
rename to linphone-desktop/src/components/camera/MSFunctions.hpp
diff --git a/src/components/chat/ChatModel.cpp b/linphone-desktop/src/components/chat/ChatModel.cpp
similarity index 100%
rename from src/components/chat/ChatModel.cpp
rename to linphone-desktop/src/components/chat/ChatModel.cpp
diff --git a/src/components/chat/ChatModel.hpp b/linphone-desktop/src/components/chat/ChatModel.hpp
similarity index 100%
rename from src/components/chat/ChatModel.hpp
rename to linphone-desktop/src/components/chat/ChatModel.hpp
diff --git a/src/components/chat/ChatProxyModel.cpp b/linphone-desktop/src/components/chat/ChatProxyModel.cpp
similarity index 100%
rename from src/components/chat/ChatProxyModel.cpp
rename to linphone-desktop/src/components/chat/ChatProxyModel.cpp
diff --git a/src/components/chat/ChatProxyModel.hpp b/linphone-desktop/src/components/chat/ChatProxyModel.hpp
similarity index 100%
rename from src/components/chat/ChatProxyModel.hpp
rename to linphone-desktop/src/components/chat/ChatProxyModel.hpp
diff --git a/src/components/codecs/AbstractCodecsModel.cpp b/linphone-desktop/src/components/codecs/AbstractCodecsModel.cpp
similarity index 100%
rename from src/components/codecs/AbstractCodecsModel.cpp
rename to linphone-desktop/src/components/codecs/AbstractCodecsModel.cpp
diff --git a/src/components/codecs/AbstractCodecsModel.hpp b/linphone-desktop/src/components/codecs/AbstractCodecsModel.hpp
similarity index 100%
rename from src/components/codecs/AbstractCodecsModel.hpp
rename to linphone-desktop/src/components/codecs/AbstractCodecsModel.hpp
diff --git a/src/components/codecs/AudioCodecsModel.cpp b/linphone-desktop/src/components/codecs/AudioCodecsModel.cpp
similarity index 100%
rename from src/components/codecs/AudioCodecsModel.cpp
rename to linphone-desktop/src/components/codecs/AudioCodecsModel.cpp
diff --git a/src/components/codecs/AudioCodecsModel.hpp b/linphone-desktop/src/components/codecs/AudioCodecsModel.hpp
similarity index 100%
rename from src/components/codecs/AudioCodecsModel.hpp
rename to linphone-desktop/src/components/codecs/AudioCodecsModel.hpp
diff --git a/src/components/codecs/VideoCodecsModel.cpp b/linphone-desktop/src/components/codecs/VideoCodecsModel.cpp
similarity index 100%
rename from src/components/codecs/VideoCodecsModel.cpp
rename to linphone-desktop/src/components/codecs/VideoCodecsModel.cpp
diff --git a/src/components/codecs/VideoCodecsModel.hpp b/linphone-desktop/src/components/codecs/VideoCodecsModel.hpp
similarity index 100%
rename from src/components/codecs/VideoCodecsModel.hpp
rename to linphone-desktop/src/components/codecs/VideoCodecsModel.hpp
diff --git a/src/components/conference/ConferenceAddModel.cpp b/linphone-desktop/src/components/conference/ConferenceAddModel.cpp
similarity index 100%
rename from src/components/conference/ConferenceAddModel.cpp
rename to linphone-desktop/src/components/conference/ConferenceAddModel.cpp
diff --git a/src/components/conference/ConferenceAddModel.hpp b/linphone-desktop/src/components/conference/ConferenceAddModel.hpp
similarity index 100%
rename from src/components/conference/ConferenceAddModel.hpp
rename to linphone-desktop/src/components/conference/ConferenceAddModel.hpp
diff --git a/src/components/conference/ConferenceHelperModel.cpp b/linphone-desktop/src/components/conference/ConferenceHelperModel.cpp
similarity index 100%
rename from src/components/conference/ConferenceHelperModel.cpp
rename to linphone-desktop/src/components/conference/ConferenceHelperModel.cpp
diff --git a/src/components/conference/ConferenceHelperModel.hpp b/linphone-desktop/src/components/conference/ConferenceHelperModel.hpp
similarity index 100%
rename from src/components/conference/ConferenceHelperModel.hpp
rename to linphone-desktop/src/components/conference/ConferenceHelperModel.hpp
diff --git a/src/components/conference/ConferenceModel.cpp b/linphone-desktop/src/components/conference/ConferenceModel.cpp
similarity index 100%
rename from src/components/conference/ConferenceModel.cpp
rename to linphone-desktop/src/components/conference/ConferenceModel.cpp
diff --git a/src/components/conference/ConferenceModel.hpp b/linphone-desktop/src/components/conference/ConferenceModel.hpp
similarity index 100%
rename from src/components/conference/ConferenceModel.hpp
rename to linphone-desktop/src/components/conference/ConferenceModel.hpp
diff --git a/src/components/contact/ContactModel.cpp b/linphone-desktop/src/components/contact/ContactModel.cpp
similarity index 100%
rename from src/components/contact/ContactModel.cpp
rename to linphone-desktop/src/components/contact/ContactModel.cpp
diff --git a/src/components/contact/ContactModel.hpp b/linphone-desktop/src/components/contact/ContactModel.hpp
similarity index 100%
rename from src/components/contact/ContactModel.hpp
rename to linphone-desktop/src/components/contact/ContactModel.hpp
diff --git a/src/components/contact/VcardModel.cpp b/linphone-desktop/src/components/contact/VcardModel.cpp
similarity index 100%
rename from src/components/contact/VcardModel.cpp
rename to linphone-desktop/src/components/contact/VcardModel.cpp
diff --git a/src/components/contact/VcardModel.hpp b/linphone-desktop/src/components/contact/VcardModel.hpp
similarity index 100%
rename from src/components/contact/VcardModel.hpp
rename to linphone-desktop/src/components/contact/VcardModel.hpp
diff --git a/src/components/contacts/ContactsListModel.cpp b/linphone-desktop/src/components/contacts/ContactsListModel.cpp
similarity index 100%
rename from src/components/contacts/ContactsListModel.cpp
rename to linphone-desktop/src/components/contacts/ContactsListModel.cpp
diff --git a/src/components/contacts/ContactsListModel.hpp b/linphone-desktop/src/components/contacts/ContactsListModel.hpp
similarity index 100%
rename from src/components/contacts/ContactsListModel.hpp
rename to linphone-desktop/src/components/contacts/ContactsListModel.hpp
diff --git a/src/components/contacts/ContactsListProxyModel.cpp b/linphone-desktop/src/components/contacts/ContactsListProxyModel.cpp
similarity index 100%
rename from src/components/contacts/ContactsListProxyModel.cpp
rename to linphone-desktop/src/components/contacts/ContactsListProxyModel.cpp
diff --git a/src/components/contacts/ContactsListProxyModel.hpp b/linphone-desktop/src/components/contacts/ContactsListProxyModel.hpp
similarity index 100%
rename from src/components/contacts/ContactsListProxyModel.hpp
rename to linphone-desktop/src/components/contacts/ContactsListProxyModel.hpp
diff --git a/src/components/core/CoreHandlers.cpp b/linphone-desktop/src/components/core/CoreHandlers.cpp
similarity index 100%
rename from src/components/core/CoreHandlers.cpp
rename to linphone-desktop/src/components/core/CoreHandlers.cpp
diff --git a/src/components/core/CoreHandlers.hpp b/linphone-desktop/src/components/core/CoreHandlers.hpp
similarity index 100%
rename from src/components/core/CoreHandlers.hpp
rename to linphone-desktop/src/components/core/CoreHandlers.hpp
diff --git a/src/components/core/CoreManager.cpp b/linphone-desktop/src/components/core/CoreManager.cpp
similarity index 100%
rename from src/components/core/CoreManager.cpp
rename to linphone-desktop/src/components/core/CoreManager.cpp
diff --git a/src/components/core/CoreManager.hpp b/linphone-desktop/src/components/core/CoreManager.hpp
similarity index 100%
rename from src/components/core/CoreManager.hpp
rename to linphone-desktop/src/components/core/CoreManager.hpp
diff --git a/src/components/core/event-count-notifier/AbstractEventCountNotifier.cpp b/linphone-desktop/src/components/core/event-count-notifier/AbstractEventCountNotifier.cpp
similarity index 100%
rename from src/components/core/event-count-notifier/AbstractEventCountNotifier.cpp
rename to linphone-desktop/src/components/core/event-count-notifier/AbstractEventCountNotifier.cpp
diff --git a/src/components/core/event-count-notifier/AbstractEventCountNotifier.hpp b/linphone-desktop/src/components/core/event-count-notifier/AbstractEventCountNotifier.hpp
similarity index 100%
rename from src/components/core/event-count-notifier/AbstractEventCountNotifier.hpp
rename to linphone-desktop/src/components/core/event-count-notifier/AbstractEventCountNotifier.hpp
diff --git a/src/components/core/event-count-notifier/EventCountNotifierMacOs.hpp b/linphone-desktop/src/components/core/event-count-notifier/EventCountNotifierMacOs.hpp
similarity index 100%
rename from src/components/core/event-count-notifier/EventCountNotifierMacOs.hpp
rename to linphone-desktop/src/components/core/event-count-notifier/EventCountNotifierMacOs.hpp
diff --git a/src/components/core/event-count-notifier/EventCountNotifierMacOs.m b/linphone-desktop/src/components/core/event-count-notifier/EventCountNotifierMacOs.m
similarity index 100%
rename from src/components/core/event-count-notifier/EventCountNotifierMacOs.m
rename to linphone-desktop/src/components/core/event-count-notifier/EventCountNotifierMacOs.m
diff --git a/src/components/core/event-count-notifier/EventCountNotifierSystemTrayIcon.cpp b/linphone-desktop/src/components/core/event-count-notifier/EventCountNotifierSystemTrayIcon.cpp
similarity index 100%
rename from src/components/core/event-count-notifier/EventCountNotifierSystemTrayIcon.cpp
rename to linphone-desktop/src/components/core/event-count-notifier/EventCountNotifierSystemTrayIcon.cpp
diff --git a/src/components/core/event-count-notifier/EventCountNotifierSystemTrayIcon.hpp b/linphone-desktop/src/components/core/event-count-notifier/EventCountNotifierSystemTrayIcon.hpp
similarity index 100%
rename from src/components/core/event-count-notifier/EventCountNotifierSystemTrayIcon.hpp
rename to linphone-desktop/src/components/core/event-count-notifier/EventCountNotifierSystemTrayIcon.hpp
diff --git a/src/components/file/FileDownloader.cpp b/linphone-desktop/src/components/file/FileDownloader.cpp
similarity index 100%
rename from src/components/file/FileDownloader.cpp
rename to linphone-desktop/src/components/file/FileDownloader.cpp
diff --git a/src/components/file/FileDownloader.hpp b/linphone-desktop/src/components/file/FileDownloader.hpp
similarity index 100%
rename from src/components/file/FileDownloader.hpp
rename to linphone-desktop/src/components/file/FileDownloader.hpp
diff --git a/src/components/file/FileExtractor.cpp b/linphone-desktop/src/components/file/FileExtractor.cpp
similarity index 100%
rename from src/components/file/FileExtractor.cpp
rename to linphone-desktop/src/components/file/FileExtractor.cpp
diff --git a/src/components/file/FileExtractor.hpp b/linphone-desktop/src/components/file/FileExtractor.hpp
similarity index 100%
rename from src/components/file/FileExtractor.hpp
rename to linphone-desktop/src/components/file/FileExtractor.hpp
diff --git a/src/components/notifier/Notifier.cpp b/linphone-desktop/src/components/notifier/Notifier.cpp
similarity index 100%
rename from src/components/notifier/Notifier.cpp
rename to linphone-desktop/src/components/notifier/Notifier.cpp
diff --git a/src/components/notifier/Notifier.hpp b/linphone-desktop/src/components/notifier/Notifier.hpp
similarity index 100%
rename from src/components/notifier/Notifier.hpp
rename to linphone-desktop/src/components/notifier/Notifier.hpp
diff --git a/src/components/other/clipboard/Clipboard.cpp b/linphone-desktop/src/components/other/clipboard/Clipboard.cpp
similarity index 100%
rename from src/components/other/clipboard/Clipboard.cpp
rename to linphone-desktop/src/components/other/clipboard/Clipboard.cpp
diff --git a/src/components/other/clipboard/Clipboard.hpp b/linphone-desktop/src/components/other/clipboard/Clipboard.hpp
similarity index 100%
rename from src/components/other/clipboard/Clipboard.hpp
rename to linphone-desktop/src/components/other/clipboard/Clipboard.hpp
diff --git a/src/components/other/colors/Colors.cpp b/linphone-desktop/src/components/other/colors/Colors.cpp
similarity index 100%
rename from src/components/other/colors/Colors.cpp
rename to linphone-desktop/src/components/other/colors/Colors.cpp
diff --git a/src/components/other/colors/Colors.hpp b/linphone-desktop/src/components/other/colors/Colors.hpp
similarity index 100%
rename from src/components/other/colors/Colors.hpp
rename to linphone-desktop/src/components/other/colors/Colors.hpp
diff --git a/src/components/other/desktop-tools/DesktopTools.hpp b/linphone-desktop/src/components/other/desktop-tools/DesktopTools.hpp
similarity index 100%
rename from src/components/other/desktop-tools/DesktopTools.hpp
rename to linphone-desktop/src/components/other/desktop-tools/DesktopTools.hpp
diff --git a/src/components/other/desktop-tools/DesktopToolsLinux.cpp b/linphone-desktop/src/components/other/desktop-tools/DesktopToolsLinux.cpp
similarity index 100%
rename from src/components/other/desktop-tools/DesktopToolsLinux.cpp
rename to linphone-desktop/src/components/other/desktop-tools/DesktopToolsLinux.cpp
diff --git a/src/components/other/desktop-tools/DesktopToolsLinux.hpp b/linphone-desktop/src/components/other/desktop-tools/DesktopToolsLinux.hpp
similarity index 100%
rename from src/components/other/desktop-tools/DesktopToolsLinux.hpp
rename to linphone-desktop/src/components/other/desktop-tools/DesktopToolsLinux.hpp
diff --git a/src/components/other/desktop-tools/DesktopToolsMacOs.cpp b/linphone-desktop/src/components/other/desktop-tools/DesktopToolsMacOs.cpp
similarity index 100%
rename from src/components/other/desktop-tools/DesktopToolsMacOs.cpp
rename to linphone-desktop/src/components/other/desktop-tools/DesktopToolsMacOs.cpp
diff --git a/src/components/other/desktop-tools/DesktopToolsMacOs.hpp b/linphone-desktop/src/components/other/desktop-tools/DesktopToolsMacOs.hpp
similarity index 100%
rename from src/components/other/desktop-tools/DesktopToolsMacOs.hpp
rename to linphone-desktop/src/components/other/desktop-tools/DesktopToolsMacOs.hpp
diff --git a/src/components/other/desktop-tools/DesktopToolsWindows.cpp b/linphone-desktop/src/components/other/desktop-tools/DesktopToolsWindows.cpp
similarity index 100%
rename from src/components/other/desktop-tools/DesktopToolsWindows.cpp
rename to linphone-desktop/src/components/other/desktop-tools/DesktopToolsWindows.cpp
diff --git a/src/components/other/desktop-tools/DesktopToolsWindows.hpp b/linphone-desktop/src/components/other/desktop-tools/DesktopToolsWindows.hpp
similarity index 100%
rename from src/components/other/desktop-tools/DesktopToolsWindows.hpp
rename to linphone-desktop/src/components/other/desktop-tools/DesktopToolsWindows.hpp
diff --git a/src/components/other/desktop-tools/screen-saver/ScreenSaverDBus.cpp b/linphone-desktop/src/components/other/desktop-tools/screen-saver/ScreenSaverDBus.cpp
similarity index 100%
rename from src/components/other/desktop-tools/screen-saver/ScreenSaverDBus.cpp
rename to linphone-desktop/src/components/other/desktop-tools/screen-saver/ScreenSaverDBus.cpp
diff --git a/src/components/other/desktop-tools/screen-saver/ScreenSaverDBus.hpp b/linphone-desktop/src/components/other/desktop-tools/screen-saver/ScreenSaverDBus.hpp
similarity index 100%
rename from src/components/other/desktop-tools/screen-saver/ScreenSaverDBus.hpp
rename to linphone-desktop/src/components/other/desktop-tools/screen-saver/ScreenSaverDBus.hpp
diff --git a/src/components/other/desktop-tools/screen-saver/ScreenSaverMacOs.m b/linphone-desktop/src/components/other/desktop-tools/screen-saver/ScreenSaverMacOs.m
similarity index 100%
rename from src/components/other/desktop-tools/screen-saver/ScreenSaverMacOs.m
rename to linphone-desktop/src/components/other/desktop-tools/screen-saver/ScreenSaverMacOs.m
diff --git a/src/components/other/desktop-tools/screen-saver/ScreenSaverXdg.cpp b/linphone-desktop/src/components/other/desktop-tools/screen-saver/ScreenSaverXdg.cpp
similarity index 100%
rename from src/components/other/desktop-tools/screen-saver/ScreenSaverXdg.cpp
rename to linphone-desktop/src/components/other/desktop-tools/screen-saver/ScreenSaverXdg.cpp
diff --git a/src/components/other/desktop-tools/screen-saver/ScreenSaverXdg.hpp b/linphone-desktop/src/components/other/desktop-tools/screen-saver/ScreenSaverXdg.hpp
similarity index 100%
rename from src/components/other/desktop-tools/screen-saver/ScreenSaverXdg.hpp
rename to linphone-desktop/src/components/other/desktop-tools/screen-saver/ScreenSaverXdg.hpp
diff --git a/src/components/other/desktop-tools/state-process/StateProcessMacOs.mm b/linphone-desktop/src/components/other/desktop-tools/state-process/StateProcessMacOs.mm
similarity index 100%
rename from src/components/other/desktop-tools/state-process/StateProcessMacOs.mm
rename to linphone-desktop/src/components/other/desktop-tools/state-process/StateProcessMacOs.mm
diff --git a/src/components/other/text-to-speech/TextToSpeech.cpp b/linphone-desktop/src/components/other/text-to-speech/TextToSpeech.cpp
similarity index 100%
rename from src/components/other/text-to-speech/TextToSpeech.cpp
rename to linphone-desktop/src/components/other/text-to-speech/TextToSpeech.cpp
diff --git a/src/components/other/text-to-speech/TextToSpeech.hpp b/linphone-desktop/src/components/other/text-to-speech/TextToSpeech.hpp
similarity index 100%
rename from src/components/other/text-to-speech/TextToSpeech.hpp
rename to linphone-desktop/src/components/other/text-to-speech/TextToSpeech.hpp
diff --git a/src/components/other/units/Units.cpp b/linphone-desktop/src/components/other/units/Units.cpp
similarity index 100%
rename from src/components/other/units/Units.cpp
rename to linphone-desktop/src/components/other/units/Units.cpp
diff --git a/src/components/other/units/Units.hpp b/linphone-desktop/src/components/other/units/Units.hpp
similarity index 100%
rename from src/components/other/units/Units.hpp
rename to linphone-desktop/src/components/other/units/Units.hpp
diff --git a/src/components/presence/OwnPresenceModel.cpp b/linphone-desktop/src/components/presence/OwnPresenceModel.cpp
similarity index 100%
rename from src/components/presence/OwnPresenceModel.cpp
rename to linphone-desktop/src/components/presence/OwnPresenceModel.cpp
diff --git a/src/components/presence/OwnPresenceModel.hpp b/linphone-desktop/src/components/presence/OwnPresenceModel.hpp
similarity index 100%
rename from src/components/presence/OwnPresenceModel.hpp
rename to linphone-desktop/src/components/presence/OwnPresenceModel.hpp
diff --git a/src/components/presence/Presence.cpp b/linphone-desktop/src/components/presence/Presence.cpp
similarity index 100%
rename from src/components/presence/Presence.cpp
rename to linphone-desktop/src/components/presence/Presence.cpp
diff --git a/src/components/presence/Presence.hpp b/linphone-desktop/src/components/presence/Presence.hpp
similarity index 100%
rename from src/components/presence/Presence.hpp
rename to linphone-desktop/src/components/presence/Presence.hpp
diff --git a/src/components/settings/AccountSettingsModel.cpp b/linphone-desktop/src/components/settings/AccountSettingsModel.cpp
similarity index 100%
rename from src/components/settings/AccountSettingsModel.cpp
rename to linphone-desktop/src/components/settings/AccountSettingsModel.cpp
diff --git a/src/components/settings/AccountSettingsModel.hpp b/linphone-desktop/src/components/settings/AccountSettingsModel.hpp
similarity index 100%
rename from src/components/settings/AccountSettingsModel.hpp
rename to linphone-desktop/src/components/settings/AccountSettingsModel.hpp
diff --git a/src/components/settings/SettingsModel.cpp b/linphone-desktop/src/components/settings/SettingsModel.cpp
similarity index 100%
rename from src/components/settings/SettingsModel.cpp
rename to linphone-desktop/src/components/settings/SettingsModel.cpp
diff --git a/src/components/settings/SettingsModel.hpp b/linphone-desktop/src/components/settings/SettingsModel.hpp
similarity index 100%
rename from src/components/settings/SettingsModel.hpp
rename to linphone-desktop/src/components/settings/SettingsModel.hpp
diff --git a/src/components/sip-addresses/SipAddressObserver.cpp b/linphone-desktop/src/components/sip-addresses/SipAddressObserver.cpp
similarity index 100%
rename from src/components/sip-addresses/SipAddressObserver.cpp
rename to linphone-desktop/src/components/sip-addresses/SipAddressObserver.cpp
diff --git a/src/components/sip-addresses/SipAddressObserver.hpp b/linphone-desktop/src/components/sip-addresses/SipAddressObserver.hpp
similarity index 100%
rename from src/components/sip-addresses/SipAddressObserver.hpp
rename to linphone-desktop/src/components/sip-addresses/SipAddressObserver.hpp
diff --git a/src/components/sip-addresses/SipAddressesModel.cpp b/linphone-desktop/src/components/sip-addresses/SipAddressesModel.cpp
similarity index 100%
rename from src/components/sip-addresses/SipAddressesModel.cpp
rename to linphone-desktop/src/components/sip-addresses/SipAddressesModel.cpp
diff --git a/src/components/sip-addresses/SipAddressesModel.hpp b/linphone-desktop/src/components/sip-addresses/SipAddressesModel.hpp
similarity index 100%
rename from src/components/sip-addresses/SipAddressesModel.hpp
rename to linphone-desktop/src/components/sip-addresses/SipAddressesModel.hpp
diff --git a/src/components/sip-addresses/SipAddressesProxyModel.cpp b/linphone-desktop/src/components/sip-addresses/SipAddressesProxyModel.cpp
similarity index 100%
rename from src/components/sip-addresses/SipAddressesProxyModel.cpp
rename to linphone-desktop/src/components/sip-addresses/SipAddressesProxyModel.cpp
diff --git a/src/components/sip-addresses/SipAddressesProxyModel.hpp b/linphone-desktop/src/components/sip-addresses/SipAddressesProxyModel.hpp
similarity index 100%
rename from src/components/sip-addresses/SipAddressesProxyModel.hpp
rename to linphone-desktop/src/components/sip-addresses/SipAddressesProxyModel.hpp
diff --git a/src/components/sound-player/SoundPlayer.cpp b/linphone-desktop/src/components/sound-player/SoundPlayer.cpp
similarity index 100%
rename from src/components/sound-player/SoundPlayer.cpp
rename to linphone-desktop/src/components/sound-player/SoundPlayer.cpp
diff --git a/src/components/sound-player/SoundPlayer.hpp b/linphone-desktop/src/components/sound-player/SoundPlayer.hpp
similarity index 100%
rename from src/components/sound-player/SoundPlayer.hpp
rename to linphone-desktop/src/components/sound-player/SoundPlayer.hpp
diff --git a/src/components/telephone-numbers/TelephoneNumbersModel.cpp b/linphone-desktop/src/components/telephone-numbers/TelephoneNumbersModel.cpp
similarity index 100%
rename from src/components/telephone-numbers/TelephoneNumbersModel.cpp
rename to linphone-desktop/src/components/telephone-numbers/TelephoneNumbersModel.cpp
diff --git a/src/components/telephone-numbers/TelephoneNumbersModel.hpp b/linphone-desktop/src/components/telephone-numbers/TelephoneNumbersModel.hpp
similarity index 100%
rename from src/components/telephone-numbers/TelephoneNumbersModel.hpp
rename to linphone-desktop/src/components/telephone-numbers/TelephoneNumbersModel.hpp
diff --git a/src/components/timeline/TimelineModel.cpp b/linphone-desktop/src/components/timeline/TimelineModel.cpp
similarity index 100%
rename from src/components/timeline/TimelineModel.cpp
rename to linphone-desktop/src/components/timeline/TimelineModel.cpp
diff --git a/src/components/timeline/TimelineModel.hpp b/linphone-desktop/src/components/timeline/TimelineModel.hpp
similarity index 100%
rename from src/components/timeline/TimelineModel.hpp
rename to linphone-desktop/src/components/timeline/TimelineModel.hpp
diff --git a/src/components/url-handlers/UrlHandlers.cpp b/linphone-desktop/src/components/url-handlers/UrlHandlers.cpp
similarity index 100%
rename from src/components/url-handlers/UrlHandlers.cpp
rename to linphone-desktop/src/components/url-handlers/UrlHandlers.cpp
diff --git a/src/components/url-handlers/UrlHandlers.hpp b/linphone-desktop/src/components/url-handlers/UrlHandlers.hpp
similarity index 100%
rename from src/components/url-handlers/UrlHandlers.hpp
rename to linphone-desktop/src/components/url-handlers/UrlHandlers.hpp
diff --git a/src/config.h.cmake b/linphone-desktop/src/config.h.cmake
similarity index 100%
rename from src/config.h.cmake
rename to linphone-desktop/src/config.h.cmake
diff --git a/src/utils/LinphoneUtils.cpp b/linphone-desktop/src/utils/LinphoneUtils.cpp
similarity index 100%
rename from src/utils/LinphoneUtils.cpp
rename to linphone-desktop/src/utils/LinphoneUtils.cpp
diff --git a/src/utils/LinphoneUtils.hpp b/linphone-desktop/src/utils/LinphoneUtils.hpp
similarity index 100%
rename from src/utils/LinphoneUtils.hpp
rename to linphone-desktop/src/utils/LinphoneUtils.hpp
diff --git a/src/utils/MediastreamerUtils.cpp b/linphone-desktop/src/utils/MediastreamerUtils.cpp
similarity index 100%
rename from src/utils/MediastreamerUtils.cpp
rename to linphone-desktop/src/utils/MediastreamerUtils.cpp
diff --git a/src/utils/MediastreamerUtils.hpp b/linphone-desktop/src/utils/MediastreamerUtils.hpp
similarity index 100%
rename from src/utils/MediastreamerUtils.hpp
rename to linphone-desktop/src/utils/MediastreamerUtils.hpp
diff --git a/src/utils/QExifImageHeader.cpp b/linphone-desktop/src/utils/QExifImageHeader.cpp
similarity index 100%
rename from src/utils/QExifImageHeader.cpp
rename to linphone-desktop/src/utils/QExifImageHeader.cpp
diff --git a/src/utils/QExifImageHeader.hpp b/linphone-desktop/src/utils/QExifImageHeader.hpp
similarity index 100%
rename from src/utils/QExifImageHeader.hpp
rename to linphone-desktop/src/utils/QExifImageHeader.hpp
diff --git a/src/utils/Utils.cpp b/linphone-desktop/src/utils/Utils.cpp
similarity index 100%
rename from src/utils/Utils.cpp
rename to linphone-desktop/src/utils/Utils.cpp
diff --git a/src/utils/Utils.hpp b/linphone-desktop/src/utils/Utils.hpp
similarity index 100%
rename from src/utils/Utils.hpp
rename to linphone-desktop/src/utils/Utils.hpp
diff --git a/tools/build_qt_rpm b/linphone-desktop/tools/build_qt_rpm
similarity index 100%
rename from tools/build_qt_rpm
rename to linphone-desktop/tools/build_qt_rpm
diff --git a/tools/check_qml_syntax b/linphone-desktop/tools/check_qml_syntax
similarity index 100%
rename from tools/check_qml_syntax
rename to linphone-desktop/tools/check_qml_syntax
diff --git a/tools/private/pre-commit b/linphone-desktop/tools/private/pre-commit
similarity index 100%
rename from tools/private/pre-commit
rename to linphone-desktop/tools/private/pre-commit
diff --git a/tools/test_qml b/linphone-desktop/tools/test_qml
similarity index 100%
rename from tools/test_qml
rename to linphone-desktop/tools/test_qml
diff --git a/tools/update_resources b/linphone-desktop/tools/update_resources
similarity index 100%
rename from tools/update_resources
rename to linphone-desktop/tools/update_resources
diff --git a/ui/dev-modules/Colors/Colors.qml b/linphone-desktop/ui/dev-modules/Colors/Colors.qml
similarity index 100%
rename from ui/dev-modules/Colors/Colors.qml
rename to linphone-desktop/ui/dev-modules/Colors/Colors.qml
diff --git a/ui/dev-modules/Colors/qmldir b/linphone-desktop/ui/dev-modules/Colors/qmldir
similarity index 100%
rename from ui/dev-modules/Colors/qmldir
rename to linphone-desktop/ui/dev-modules/Colors/qmldir
diff --git a/ui/dev-modules/Units/Units.qml b/linphone-desktop/ui/dev-modules/Units/Units.qml
similarity index 100%
rename from ui/dev-modules/Units/Units.qml
rename to linphone-desktop/ui/dev-modules/Units/Units.qml
diff --git a/ui/dev-modules/Units/qmldir b/linphone-desktop/ui/dev-modules/Units/qmldir
similarity index 100%
rename from ui/dev-modules/Units/qmldir
rename to linphone-desktop/ui/dev-modules/Units/qmldir
diff --git a/ui/modules/Common/Animations/BusyIndicator.qml b/linphone-desktop/ui/modules/Common/Animations/BusyIndicator.qml
similarity index 100%
rename from ui/modules/Common/Animations/BusyIndicator.qml
rename to linphone-desktop/ui/modules/Common/Animations/BusyIndicator.qml
diff --git a/ui/modules/Common/Constants/Constants.qml b/linphone-desktop/ui/modules/Common/Constants/Constants.qml
similarity index 100%
rename from ui/modules/Common/Constants/Constants.qml
rename to linphone-desktop/ui/modules/Common/Constants/Constants.qml
diff --git a/ui/modules/Common/Dialog/ConfirmDialog.qml b/linphone-desktop/ui/modules/Common/Dialog/ConfirmDialog.qml
similarity index 100%
rename from ui/modules/Common/Dialog/ConfirmDialog.qml
rename to linphone-desktop/ui/modules/Common/Dialog/ConfirmDialog.qml
diff --git a/ui/modules/Common/Dialog/DialogDescription.qml b/linphone-desktop/ui/modules/Common/Dialog/DialogDescription.qml
similarity index 100%
rename from ui/modules/Common/Dialog/DialogDescription.qml
rename to linphone-desktop/ui/modules/Common/Dialog/DialogDescription.qml
diff --git a/ui/modules/Common/Dialog/DialogPlus.qml b/linphone-desktop/ui/modules/Common/Dialog/DialogPlus.qml
similarity index 100%
rename from ui/modules/Common/Dialog/DialogPlus.qml
rename to linphone-desktop/ui/modules/Common/Dialog/DialogPlus.qml
diff --git a/ui/modules/Common/Form/ActionBar.qml b/linphone-desktop/ui/modules/Common/Form/ActionBar.qml
similarity index 100%
rename from ui/modules/Common/Form/ActionBar.qml
rename to linphone-desktop/ui/modules/Common/Form/ActionBar.qml
diff --git a/ui/modules/Common/Form/ActionButton.qml b/linphone-desktop/ui/modules/Common/Form/ActionButton.qml
similarity index 100%
rename from ui/modules/Common/Form/ActionButton.qml
rename to linphone-desktop/ui/modules/Common/Form/ActionButton.qml
diff --git a/ui/modules/Common/Form/ActionSwitch.qml b/linphone-desktop/ui/modules/Common/Form/ActionSwitch.qml
similarity index 100%
rename from ui/modules/Common/Form/ActionSwitch.qml
rename to linphone-desktop/ui/modules/Common/Form/ActionSwitch.qml
diff --git a/ui/modules/Common/Form/Buttons/AbstractTextButton.qml b/linphone-desktop/ui/modules/Common/Form/Buttons/AbstractTextButton.qml
similarity index 100%
rename from ui/modules/Common/Form/Buttons/AbstractTextButton.qml
rename to linphone-desktop/ui/modules/Common/Form/Buttons/AbstractTextButton.qml
diff --git a/ui/modules/Common/Form/Buttons/ExclusiveButtons.qml b/linphone-desktop/ui/modules/Common/Form/Buttons/ExclusiveButtons.qml
similarity index 100%
rename from ui/modules/Common/Form/Buttons/ExclusiveButtons.qml
rename to linphone-desktop/ui/modules/Common/Form/Buttons/ExclusiveButtons.qml
diff --git a/ui/modules/Common/Form/Buttons/ExclusiveButtons.spec.qml b/linphone-desktop/ui/modules/Common/Form/Buttons/ExclusiveButtons.spec.qml
similarity index 100%
rename from ui/modules/Common/Form/Buttons/ExclusiveButtons.spec.qml
rename to linphone-desktop/ui/modules/Common/Form/Buttons/ExclusiveButtons.spec.qml
diff --git a/ui/modules/Common/Form/Buttons/FileChooserButton.qml b/linphone-desktop/ui/modules/Common/Form/Buttons/FileChooserButton.qml
similarity index 100%
rename from ui/modules/Common/Form/Buttons/FileChooserButton.qml
rename to linphone-desktop/ui/modules/Common/Form/Buttons/FileChooserButton.qml
diff --git a/ui/modules/Common/Form/Buttons/SmallButton.qml b/linphone-desktop/ui/modules/Common/Form/Buttons/SmallButton.qml
similarity index 100%
rename from ui/modules/Common/Form/Buttons/SmallButton.qml
rename to linphone-desktop/ui/modules/Common/Form/Buttons/SmallButton.qml
diff --git a/ui/modules/Common/Form/Buttons/TextButtonA.qml b/linphone-desktop/ui/modules/Common/Form/Buttons/TextButtonA.qml
similarity index 100%
rename from ui/modules/Common/Form/Buttons/TextButtonA.qml
rename to linphone-desktop/ui/modules/Common/Form/Buttons/TextButtonA.qml
diff --git a/ui/modules/Common/Form/Buttons/TextButtonB.qml b/linphone-desktop/ui/modules/Common/Form/Buttons/TextButtonB.qml
similarity index 100%
rename from ui/modules/Common/Form/Buttons/TextButtonB.qml
rename to linphone-desktop/ui/modules/Common/Form/Buttons/TextButtonB.qml
diff --git a/ui/modules/Common/Form/CheckBoxText.qml b/linphone-desktop/ui/modules/Common/Form/CheckBoxText.qml
similarity index 100%
rename from ui/modules/Common/Form/CheckBoxText.qml
rename to linphone-desktop/ui/modules/Common/Form/CheckBoxText.qml
diff --git a/ui/modules/Common/Form/ComboBox.js b/linphone-desktop/ui/modules/Common/Form/ComboBox.js
similarity index 100%
rename from ui/modules/Common/Form/ComboBox.js
rename to linphone-desktop/ui/modules/Common/Form/ComboBox.js
diff --git a/ui/modules/Common/Form/ComboBox.qml b/linphone-desktop/ui/modules/Common/Form/ComboBox.qml
similarity index 100%
rename from ui/modules/Common/Form/ComboBox.qml
rename to linphone-desktop/ui/modules/Common/Form/ComboBox.qml
diff --git a/ui/modules/Common/Form/CommonItemDelegate.qml b/linphone-desktop/ui/modules/Common/Form/CommonItemDelegate.qml
similarity index 100%
rename from ui/modules/Common/Form/CommonItemDelegate.qml
rename to linphone-desktop/ui/modules/Common/Form/CommonItemDelegate.qml
diff --git a/ui/modules/Common/Form/DroppableTextArea.qml b/linphone-desktop/ui/modules/Common/Form/DroppableTextArea.qml
similarity index 100%
rename from ui/modules/Common/Form/DroppableTextArea.qml
rename to linphone-desktop/ui/modules/Common/Form/DroppableTextArea.qml
diff --git a/ui/modules/Common/Form/Fields/HexField.qml b/linphone-desktop/ui/modules/Common/Form/Fields/HexField.qml
similarity index 100%
rename from ui/modules/Common/Form/Fields/HexField.qml
rename to linphone-desktop/ui/modules/Common/Form/Fields/HexField.qml
diff --git a/ui/modules/Common/Form/Fields/NumericField.qml b/linphone-desktop/ui/modules/Common/Form/Fields/NumericField.qml
similarity index 100%
rename from ui/modules/Common/Form/Fields/NumericField.qml
rename to linphone-desktop/ui/modules/Common/Form/Fields/NumericField.qml
diff --git a/ui/modules/Common/Form/Fields/PasswordField.qml b/linphone-desktop/ui/modules/Common/Form/Fields/PasswordField.qml
similarity index 100%
rename from ui/modules/Common/Form/Fields/PasswordField.qml
rename to linphone-desktop/ui/modules/Common/Form/Fields/PasswordField.qml
diff --git a/ui/modules/Common/Form/Fields/PortField.qml b/linphone-desktop/ui/modules/Common/Form/Fields/PortField.qml
similarity index 100%
rename from ui/modules/Common/Form/Fields/PortField.qml
rename to linphone-desktop/ui/modules/Common/Form/Fields/PortField.qml
diff --git a/ui/modules/Common/Form/Fields/ScrollableListViewField.qml b/linphone-desktop/ui/modules/Common/Form/Fields/ScrollableListViewField.qml
similarity index 100%
rename from ui/modules/Common/Form/Fields/ScrollableListViewField.qml
rename to linphone-desktop/ui/modules/Common/Form/Fields/ScrollableListViewField.qml
diff --git a/ui/modules/Common/Form/Fields/TextAreaField.qml b/linphone-desktop/ui/modules/Common/Form/Fields/TextAreaField.qml
similarity index 100%
rename from ui/modules/Common/Form/Fields/TextAreaField.qml
rename to linphone-desktop/ui/modules/Common/Form/Fields/TextAreaField.qml
diff --git a/ui/modules/Common/Form/Fields/TextField.qml b/linphone-desktop/ui/modules/Common/Form/Fields/TextField.qml
similarity index 100%
rename from ui/modules/Common/Form/Fields/TextField.qml
rename to linphone-desktop/ui/modules/Common/Form/Fields/TextField.qml
diff --git a/ui/modules/Common/Form/ListForm.js b/linphone-desktop/ui/modules/Common/Form/ListForm.js
similarity index 100%
rename from ui/modules/Common/Form/ListForm.js
rename to linphone-desktop/ui/modules/Common/Form/ListForm.js
diff --git a/ui/modules/Common/Form/ListForm.qml b/linphone-desktop/ui/modules/Common/Form/ListForm.qml
similarity index 100%
rename from ui/modules/Common/Form/ListForm.qml
rename to linphone-desktop/ui/modules/Common/Form/ListForm.qml
diff --git a/ui/modules/Common/Form/ListItemSelector.js b/linphone-desktop/ui/modules/Common/Form/ListItemSelector.js
similarity index 100%
rename from ui/modules/Common/Form/ListItemSelector.js
rename to linphone-desktop/ui/modules/Common/Form/ListItemSelector.js
diff --git a/ui/modules/Common/Form/ListItemSelector.qml b/linphone-desktop/ui/modules/Common/Form/ListItemSelector.qml
similarity index 100%
rename from ui/modules/Common/Form/ListItemSelector.qml
rename to linphone-desktop/ui/modules/Common/Form/ListItemSelector.qml
diff --git a/ui/modules/Common/Form/Placements/Form.qml b/linphone-desktop/ui/modules/Common/Form/Placements/Form.qml
similarity index 100%
rename from ui/modules/Common/Form/Placements/Form.qml
rename to linphone-desktop/ui/modules/Common/Form/Placements/Form.qml
diff --git a/ui/modules/Common/Form/Placements/FormEmptyLine.qml b/linphone-desktop/ui/modules/Common/Form/Placements/FormEmptyLine.qml
similarity index 100%
rename from ui/modules/Common/Form/Placements/FormEmptyLine.qml
rename to linphone-desktop/ui/modules/Common/Form/Placements/FormEmptyLine.qml
diff --git a/ui/modules/Common/Form/Placements/FormGroup.qml b/linphone-desktop/ui/modules/Common/Form/Placements/FormGroup.qml
similarity index 100%
rename from ui/modules/Common/Form/Placements/FormGroup.qml
rename to linphone-desktop/ui/modules/Common/Form/Placements/FormGroup.qml
diff --git a/ui/modules/Common/Form/Placements/FormHGroup.qml b/linphone-desktop/ui/modules/Common/Form/Placements/FormHGroup.qml
similarity index 100%
rename from ui/modules/Common/Form/Placements/FormHGroup.qml
rename to linphone-desktop/ui/modules/Common/Form/Placements/FormHGroup.qml
diff --git a/ui/modules/Common/Form/Placements/FormLine.qml b/linphone-desktop/ui/modules/Common/Form/Placements/FormLine.qml
similarity index 100%
rename from ui/modules/Common/Form/Placements/FormLine.qml
rename to linphone-desktop/ui/modules/Common/Form/Placements/FormLine.qml
diff --git a/ui/modules/Common/Form/Placements/FormTable.qml b/linphone-desktop/ui/modules/Common/Form/Placements/FormTable.qml
similarity index 100%
rename from ui/modules/Common/Form/Placements/FormTable.qml
rename to linphone-desktop/ui/modules/Common/Form/Placements/FormTable.qml
diff --git a/ui/modules/Common/Form/Placements/FormTableEntry.qml b/linphone-desktop/ui/modules/Common/Form/Placements/FormTableEntry.qml
similarity index 100%
rename from ui/modules/Common/Form/Placements/FormTableEntry.qml
rename to linphone-desktop/ui/modules/Common/Form/Placements/FormTableEntry.qml
diff --git a/ui/modules/Common/Form/Placements/FormTableLine.qml b/linphone-desktop/ui/modules/Common/Form/Placements/FormTableLine.qml
similarity index 100%
rename from ui/modules/Common/Form/Placements/FormTableLine.qml
rename to linphone-desktop/ui/modules/Common/Form/Placements/FormTableLine.qml
diff --git a/ui/modules/Common/Form/Placements/FormVGroup.qml b/linphone-desktop/ui/modules/Common/Form/Placements/FormVGroup.qml
similarity index 100%
rename from ui/modules/Common/Form/Placements/FormVGroup.qml
rename to linphone-desktop/ui/modules/Common/Form/Placements/FormVGroup.qml
diff --git a/ui/modules/Common/Form/SearchBox.qml b/linphone-desktop/ui/modules/Common/Form/SearchBox.qml
similarity index 100%
rename from ui/modules/Common/Form/SearchBox.qml
rename to linphone-desktop/ui/modules/Common/Form/SearchBox.qml
diff --git a/ui/modules/Common/Form/Slider.qml b/linphone-desktop/ui/modules/Common/Form/Slider.qml
similarity index 100%
rename from ui/modules/Common/Form/Slider.qml
rename to linphone-desktop/ui/modules/Common/Form/Slider.qml
diff --git a/ui/modules/Common/Form/StaticListForm.qml b/linphone-desktop/ui/modules/Common/Form/StaticListForm.qml
similarity index 100%
rename from ui/modules/Common/Form/StaticListForm.qml
rename to linphone-desktop/ui/modules/Common/Form/StaticListForm.qml
diff --git a/ui/modules/Common/Form/Switch.qml b/linphone-desktop/ui/modules/Common/Form/Switch.qml
similarity index 100%
rename from ui/modules/Common/Form/Switch.qml
rename to linphone-desktop/ui/modules/Common/Form/Switch.qml
diff --git a/ui/modules/Common/Form/Tab/TabBar.qml b/linphone-desktop/ui/modules/Common/Form/Tab/TabBar.qml
similarity index 100%
rename from ui/modules/Common/Form/Tab/TabBar.qml
rename to linphone-desktop/ui/modules/Common/Form/Tab/TabBar.qml
diff --git a/ui/modules/Common/Form/Tab/TabButton.qml b/linphone-desktop/ui/modules/Common/Form/Tab/TabButton.qml
similarity index 100%
rename from ui/modules/Common/Form/Tab/TabButton.qml
rename to linphone-desktop/ui/modules/Common/Form/Tab/TabButton.qml
diff --git a/ui/modules/Common/Form/Tab/TabContainer.qml b/linphone-desktop/ui/modules/Common/Form/Tab/TabContainer.qml
similarity index 100%
rename from ui/modules/Common/Form/Tab/TabContainer.qml
rename to linphone-desktop/ui/modules/Common/Form/Tab/TabContainer.qml
diff --git a/ui/modules/Common/Form/TransparentTextInput.qml b/linphone-desktop/ui/modules/Common/Form/TransparentTextInput.qml
similarity index 100%
rename from ui/modules/Common/Form/TransparentTextInput.qml
rename to linphone-desktop/ui/modules/Common/Form/TransparentTextInput.qml
diff --git a/ui/modules/Common/Helpers/DragBox.qml b/linphone-desktop/ui/modules/Common/Helpers/DragBox.qml
similarity index 100%
rename from ui/modules/Common/Helpers/DragBox.qml
rename to linphone-desktop/ui/modules/Common/Helpers/DragBox.qml
diff --git a/ui/modules/Common/Helpers/InvertedMouseArea.qml b/linphone-desktop/ui/modules/Common/Helpers/InvertedMouseArea.qml
similarity index 100%
rename from ui/modules/Common/Helpers/InvertedMouseArea.qml
rename to linphone-desktop/ui/modules/Common/Helpers/InvertedMouseArea.qml
diff --git a/ui/modules/Common/Helpers/InvertedMouseArea.spec.qml b/linphone-desktop/ui/modules/Common/Helpers/InvertedMouseArea.spec.qml
similarity index 100%
rename from ui/modules/Common/Helpers/InvertedMouseArea.spec.qml
rename to linphone-desktop/ui/modules/Common/Helpers/InvertedMouseArea.spec.qml
diff --git a/ui/modules/Common/Image/Icon.qml b/linphone-desktop/ui/modules/Common/Image/Icon.qml
similarity index 100%
rename from ui/modules/Common/Image/Icon.qml
rename to linphone-desktop/ui/modules/Common/Image/Icon.qml
diff --git a/ui/modules/Common/Image/RoundedImage.qml b/linphone-desktop/ui/modules/Common/Image/RoundedImage.qml
similarity index 100%
rename from ui/modules/Common/Image/RoundedImage.qml
rename to linphone-desktop/ui/modules/Common/Image/RoundedImage.qml
diff --git a/ui/modules/Common/Indicators/VuMeter.qml b/linphone-desktop/ui/modules/Common/Indicators/VuMeter.qml
similarity index 100%
rename from ui/modules/Common/Indicators/VuMeter.qml
rename to linphone-desktop/ui/modules/Common/Indicators/VuMeter.qml
diff --git a/ui/modules/Common/Menus/ApplicationMenu.qml b/linphone-desktop/ui/modules/Common/Menus/ApplicationMenu.qml
similarity index 100%
rename from ui/modules/Common/Menus/ApplicationMenu.qml
rename to linphone-desktop/ui/modules/Common/Menus/ApplicationMenu.qml
diff --git a/ui/modules/Common/Menus/ApplicationMenuEntry.qml b/linphone-desktop/ui/modules/Common/Menus/ApplicationMenuEntry.qml
similarity index 100%
rename from ui/modules/Common/Menus/ApplicationMenuEntry.qml
rename to linphone-desktop/ui/modules/Common/Menus/ApplicationMenuEntry.qml
diff --git a/ui/modules/Common/Menus/DropDownDynamicMenu.qml b/linphone-desktop/ui/modules/Common/Menus/DropDownDynamicMenu.qml
similarity index 100%
rename from ui/modules/Common/Menus/DropDownDynamicMenu.qml
rename to linphone-desktop/ui/modules/Common/Menus/DropDownDynamicMenu.qml
diff --git a/ui/modules/Common/Menus/DropDownStaticMenu.qml b/linphone-desktop/ui/modules/Common/Menus/DropDownStaticMenu.qml
similarity index 100%
rename from ui/modules/Common/Menus/DropDownStaticMenu.qml
rename to linphone-desktop/ui/modules/Common/Menus/DropDownStaticMenu.qml
diff --git a/ui/modules/Common/Menus/DropDownStaticMenuEntry.qml b/linphone-desktop/ui/modules/Common/Menus/DropDownStaticMenuEntry.qml
similarity index 100%
rename from ui/modules/Common/Menus/DropDownStaticMenuEntry.qml
rename to linphone-desktop/ui/modules/Common/Menus/DropDownStaticMenuEntry.qml
diff --git a/ui/modules/Common/Menus/Menu.qml b/linphone-desktop/ui/modules/Common/Menus/Menu.qml
similarity index 100%
rename from ui/modules/Common/Menus/Menu.qml
rename to linphone-desktop/ui/modules/Common/Menus/Menu.qml
diff --git a/ui/modules/Common/Menus/MenuItem.qml b/linphone-desktop/ui/modules/Common/Menus/MenuItem.qml
similarity index 100%
rename from ui/modules/Common/Menus/MenuItem.qml
rename to linphone-desktop/ui/modules/Common/Menus/MenuItem.qml
diff --git a/ui/modules/Common/Misc/Borders.qml b/linphone-desktop/ui/modules/Common/Misc/Borders.qml
similarity index 100%
rename from ui/modules/Common/Misc/Borders.qml
rename to linphone-desktop/ui/modules/Common/Misc/Borders.qml
diff --git a/ui/modules/Common/Misc/ForceScrollBar.qml b/linphone-desktop/ui/modules/Common/Misc/ForceScrollBar.qml
similarity index 100%
rename from ui/modules/Common/Misc/ForceScrollBar.qml
rename to linphone-desktop/ui/modules/Common/Misc/ForceScrollBar.qml
diff --git a/ui/modules/Common/Misc/Paned.qml b/linphone-desktop/ui/modules/Common/Misc/Paned.qml
similarity index 100%
rename from ui/modules/Common/Misc/Paned.qml
rename to linphone-desktop/ui/modules/Common/Misc/Paned.qml
diff --git a/ui/modules/Common/Popup/DesktopPopup.qml b/linphone-desktop/ui/modules/Common/Popup/DesktopPopup.qml
similarity index 100%
rename from ui/modules/Common/Popup/DesktopPopup.qml
rename to linphone-desktop/ui/modules/Common/Popup/DesktopPopup.qml
diff --git a/ui/modules/Common/Popup/Popup.qml b/linphone-desktop/ui/modules/Common/Popup/Popup.qml
similarity index 100%
rename from ui/modules/Common/Popup/Popup.qml
rename to linphone-desktop/ui/modules/Common/Popup/Popup.qml
diff --git a/ui/modules/Common/Popup/PopupShadow.qml b/linphone-desktop/ui/modules/Common/Popup/PopupShadow.qml
similarity index 100%
rename from ui/modules/Common/Popup/PopupShadow.qml
rename to linphone-desktop/ui/modules/Common/Popup/PopupShadow.qml
diff --git a/ui/modules/Common/Styles/Animations/BusyIndicatorStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Animations/BusyIndicatorStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Animations/BusyIndicatorStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Animations/BusyIndicatorStyle.qml
diff --git a/ui/modules/Common/Styles/Dialog/DialogStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Dialog/DialogStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Dialog/DialogStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Dialog/DialogStyle.qml
diff --git a/ui/modules/Common/Styles/Form/ActionBarStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Form/ActionBarStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Form/ActionBarStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Form/ActionBarStyle.qml
diff --git a/ui/modules/Common/Styles/Form/Buttons/AbstractTextButtonStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Form/Buttons/AbstractTextButtonStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Form/Buttons/AbstractTextButtonStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Form/Buttons/AbstractTextButtonStyle.qml
diff --git a/ui/modules/Common/Styles/Form/Buttons/ExclusiveButtonsStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Form/Buttons/ExclusiveButtonsStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Form/Buttons/ExclusiveButtonsStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Form/Buttons/ExclusiveButtonsStyle.qml
diff --git a/ui/modules/Common/Styles/Form/Buttons/FileChooserButtonStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Form/Buttons/FileChooserButtonStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Form/Buttons/FileChooserButtonStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Form/Buttons/FileChooserButtonStyle.qml
diff --git a/ui/modules/Common/Styles/Form/Buttons/SmallButtonStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Form/Buttons/SmallButtonStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Form/Buttons/SmallButtonStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Form/Buttons/SmallButtonStyle.qml
diff --git a/ui/modules/Common/Styles/Form/Buttons/TextButtonAStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Form/Buttons/TextButtonAStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Form/Buttons/TextButtonAStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Form/Buttons/TextButtonAStyle.qml
diff --git a/ui/modules/Common/Styles/Form/Buttons/TextButtonBStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Form/Buttons/TextButtonBStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Form/Buttons/TextButtonBStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Form/Buttons/TextButtonBStyle.qml
diff --git a/ui/modules/Common/Styles/Form/CheckBoxTextStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Form/CheckBoxTextStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Form/CheckBoxTextStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Form/CheckBoxTextStyle.qml
diff --git a/ui/modules/Common/Styles/Form/ComboBoxStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Form/ComboBoxStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Form/ComboBoxStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Form/ComboBoxStyle.qml
diff --git a/ui/modules/Common/Styles/Form/CommonItemDelegateStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Form/CommonItemDelegateStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Form/CommonItemDelegateStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Form/CommonItemDelegateStyle.qml
diff --git a/ui/modules/Common/Styles/Form/DroppableTextAreaStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Form/DroppableTextAreaStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Form/DroppableTextAreaStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Form/DroppableTextAreaStyle.qml
diff --git a/ui/modules/Common/Styles/Form/Fields/NumericFieldStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Form/Fields/NumericFieldStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Form/Fields/NumericFieldStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Form/Fields/NumericFieldStyle.qml
diff --git a/ui/modules/Common/Styles/Form/Fields/TextAreaFieldStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Form/Fields/TextAreaFieldStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Form/Fields/TextAreaFieldStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Form/Fields/TextAreaFieldStyle.qml
diff --git a/ui/modules/Common/Styles/Form/Fields/TextFieldStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Form/Fields/TextFieldStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Form/Fields/TextFieldStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Form/Fields/TextFieldStyle.qml
diff --git a/ui/modules/Common/Styles/Form/ListFormStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Form/ListFormStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Form/ListFormStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Form/ListFormStyle.qml
diff --git a/ui/modules/Common/Styles/Form/Placements/FormHGroupStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Form/Placements/FormHGroupStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Form/Placements/FormHGroupStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Form/Placements/FormHGroupStyle.qml
diff --git a/ui/modules/Common/Styles/Form/Placements/FormLineStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Form/Placements/FormLineStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Form/Placements/FormLineStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Form/Placements/FormLineStyle.qml
diff --git a/ui/modules/Common/Styles/Form/Placements/FormStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Form/Placements/FormStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Form/Placements/FormStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Form/Placements/FormStyle.qml
diff --git a/ui/modules/Common/Styles/Form/Placements/FormTableLineStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Form/Placements/FormTableLineStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Form/Placements/FormTableLineStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Form/Placements/FormTableLineStyle.qml
diff --git a/ui/modules/Common/Styles/Form/Placements/FormTableStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Form/Placements/FormTableStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Form/Placements/FormTableStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Form/Placements/FormTableStyle.qml
diff --git a/ui/modules/Common/Styles/Form/Placements/FormVGroupStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Form/Placements/FormVGroupStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Form/Placements/FormVGroupStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Form/Placements/FormVGroupStyle.qml
diff --git a/ui/modules/Common/Styles/Form/SearchBoxStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Form/SearchBoxStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Form/SearchBoxStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Form/SearchBoxStyle.qml
diff --git a/ui/modules/Common/Styles/Form/SliderStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Form/SliderStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Form/SliderStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Form/SliderStyle.qml
diff --git a/ui/modules/Common/Styles/Form/SwitchStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Form/SwitchStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Form/SwitchStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Form/SwitchStyle.qml
diff --git a/ui/modules/Common/Styles/Form/Tab/TabButtonStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Form/Tab/TabButtonStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Form/Tab/TabButtonStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Form/Tab/TabButtonStyle.qml
diff --git a/ui/modules/Common/Styles/Form/Tab/TabContainerStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Form/Tab/TabContainerStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Form/Tab/TabContainerStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Form/Tab/TabContainerStyle.qml
diff --git a/ui/modules/Common/Styles/Form/TransparentTextInputStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Form/TransparentTextInputStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Form/TransparentTextInputStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Form/TransparentTextInputStyle.qml
diff --git a/ui/modules/Common/Styles/Indicators/VuMeterStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Indicators/VuMeterStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Indicators/VuMeterStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Indicators/VuMeterStyle.qml
diff --git a/ui/modules/Common/Styles/Menus/ApplicationMenuStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Menus/ApplicationMenuStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Menus/ApplicationMenuStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Menus/ApplicationMenuStyle.qml
diff --git a/ui/modules/Common/Styles/Menus/DropDownStaticMenuStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Menus/DropDownStaticMenuStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Menus/DropDownStaticMenuStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Menus/DropDownStaticMenuStyle.qml
diff --git a/ui/modules/Common/Styles/Menus/MenuItemStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Menus/MenuItemStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Menus/MenuItemStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Menus/MenuItemStyle.qml
diff --git a/ui/modules/Common/Styles/Menus/MenuStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Menus/MenuStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Menus/MenuStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Menus/MenuStyle.qml
diff --git a/ui/modules/Common/Styles/Misc/ForceScrollBarStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Misc/ForceScrollBarStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Misc/ForceScrollBarStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Misc/ForceScrollBarStyle.qml
diff --git a/ui/modules/Common/Styles/Misc/PanedStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Misc/PanedStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Misc/PanedStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Misc/PanedStyle.qml
diff --git a/ui/modules/Common/Styles/Popup/PopupStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Popup/PopupStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Popup/PopupStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Popup/PopupStyle.qml
diff --git a/ui/modules/Common/Styles/Tooltip/TooltipStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Tooltip/TooltipStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Tooltip/TooltipStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Tooltip/TooltipStyle.qml
diff --git a/ui/modules/Common/Styles/Window/WindowStyle.qml b/linphone-desktop/ui/modules/Common/Styles/Window/WindowStyle.qml
similarity index 100%
rename from ui/modules/Common/Styles/Window/WindowStyle.qml
rename to linphone-desktop/ui/modules/Common/Styles/Window/WindowStyle.qml
diff --git a/ui/modules/Common/Styles/qmldir b/linphone-desktop/ui/modules/Common/Styles/qmldir
similarity index 100%
rename from ui/modules/Common/Styles/qmldir
rename to linphone-desktop/ui/modules/Common/Styles/qmldir
diff --git a/ui/modules/Common/Tooltip/Tooltip.qml b/linphone-desktop/ui/modules/Common/Tooltip/Tooltip.qml
similarity index 100%
rename from ui/modules/Common/Tooltip/Tooltip.qml
rename to linphone-desktop/ui/modules/Common/Tooltip/Tooltip.qml
diff --git a/ui/modules/Common/Tooltip/TooltipArea.qml b/linphone-desktop/ui/modules/Common/Tooltip/TooltipArea.qml
similarity index 100%
rename from ui/modules/Common/Tooltip/TooltipArea.qml
rename to linphone-desktop/ui/modules/Common/Tooltip/TooltipArea.qml
diff --git a/ui/modules/Common/View/ScrollableListView.qml b/linphone-desktop/ui/modules/Common/View/ScrollableListView.qml
similarity index 100%
rename from ui/modules/Common/View/ScrollableListView.qml
rename to linphone-desktop/ui/modules/Common/View/ScrollableListView.qml
diff --git a/ui/modules/Common/Window/ApplicationWindow.qml b/linphone-desktop/ui/modules/Common/Window/ApplicationWindow.qml
similarity index 100%
rename from ui/modules/Common/Window/ApplicationWindow.qml
rename to linphone-desktop/ui/modules/Common/Window/ApplicationWindow.qml
diff --git a/ui/modules/Common/Window/VirtualWindow.qml b/linphone-desktop/ui/modules/Common/Window/VirtualWindow.qml
similarity index 100%
rename from ui/modules/Common/Window/VirtualWindow.qml
rename to linphone-desktop/ui/modules/Common/Window/VirtualWindow.qml
diff --git a/ui/modules/Common/Window/Window.js b/linphone-desktop/ui/modules/Common/Window/Window.js
similarity index 100%
rename from ui/modules/Common/Window/Window.js
rename to linphone-desktop/ui/modules/Common/Window/Window.js
diff --git a/ui/modules/Common/Window/Window.qml b/linphone-desktop/ui/modules/Common/Window/Window.qml
similarity index 100%
rename from ui/modules/Common/Window/Window.qml
rename to linphone-desktop/ui/modules/Common/Window/Window.qml
diff --git a/ui/modules/Common/qmldir b/linphone-desktop/ui/modules/Common/qmldir
similarity index 100%
rename from ui/modules/Common/qmldir
rename to linphone-desktop/ui/modules/Common/qmldir
diff --git a/ui/modules/Konami/Konami.qml b/linphone-desktop/ui/modules/Konami/Konami.qml
similarity index 100%
rename from ui/modules/Konami/Konami.qml
rename to linphone-desktop/ui/modules/Konami/Konami.qml
diff --git a/ui/modules/Konami/qmldir b/linphone-desktop/ui/modules/Konami/qmldir
similarity index 100%
rename from ui/modules/Konami/qmldir
rename to linphone-desktop/ui/modules/Konami/qmldir
diff --git a/ui/modules/Linphone/Account/AccountStatus.qml b/linphone-desktop/ui/modules/Linphone/Account/AccountStatus.qml
similarity index 100%
rename from ui/modules/Linphone/Account/AccountStatus.qml
rename to linphone-desktop/ui/modules/Linphone/Account/AccountStatus.qml
diff --git a/ui/modules/Linphone/Blocks/CardBlock.qml b/linphone-desktop/ui/modules/Linphone/Blocks/CardBlock.qml
similarity index 100%
rename from ui/modules/Linphone/Blocks/CardBlock.qml
rename to linphone-desktop/ui/modules/Linphone/Blocks/CardBlock.qml
diff --git a/ui/modules/Linphone/Blocks/RequestBlock.qml b/linphone-desktop/ui/modules/Linphone/Blocks/RequestBlock.qml
similarity index 100%
rename from ui/modules/Linphone/Blocks/RequestBlock.qml
rename to linphone-desktop/ui/modules/Linphone/Blocks/RequestBlock.qml
diff --git a/ui/modules/Linphone/Calls/CallControls.qml b/linphone-desktop/ui/modules/Linphone/Calls/CallControls.qml
similarity index 100%
rename from ui/modules/Linphone/Calls/CallControls.qml
rename to linphone-desktop/ui/modules/Linphone/Calls/CallControls.qml
diff --git a/ui/modules/Linphone/Calls/CallStatistics.qml b/linphone-desktop/ui/modules/Linphone/Calls/CallStatistics.qml
similarity index 100%
rename from ui/modules/Linphone/Calls/CallStatistics.qml
rename to linphone-desktop/ui/modules/Linphone/Calls/CallStatistics.qml
diff --git a/ui/modules/Linphone/Calls/Calls.js b/linphone-desktop/ui/modules/Linphone/Calls/Calls.js
similarity index 100%
rename from ui/modules/Linphone/Calls/Calls.js
rename to linphone-desktop/ui/modules/Linphone/Calls/Calls.js
diff --git a/ui/modules/Linphone/Calls/Calls.qml b/linphone-desktop/ui/modules/Linphone/Calls/Calls.qml
similarity index 100%
rename from ui/modules/Linphone/Calls/Calls.qml
rename to linphone-desktop/ui/modules/Linphone/Calls/Calls.qml
diff --git a/ui/modules/Linphone/Calls/ConferenceControls.qml b/linphone-desktop/ui/modules/Linphone/Calls/ConferenceControls.qml
similarity index 100%
rename from ui/modules/Linphone/Calls/ConferenceControls.qml
rename to linphone-desktop/ui/modules/Linphone/Calls/ConferenceControls.qml
diff --git a/ui/modules/Linphone/Chat/Chat.js b/linphone-desktop/ui/modules/Linphone/Chat/Chat.js
similarity index 100%
rename from ui/modules/Linphone/Chat/Chat.js
rename to linphone-desktop/ui/modules/Linphone/Chat/Chat.js
diff --git a/ui/modules/Linphone/Chat/Chat.qml b/linphone-desktop/ui/modules/Linphone/Chat/Chat.qml
similarity index 100%
rename from ui/modules/Linphone/Chat/Chat.qml
rename to linphone-desktop/ui/modules/Linphone/Chat/Chat.qml
diff --git a/ui/modules/Linphone/Chat/Event.qml b/linphone-desktop/ui/modules/Linphone/Chat/Event.qml
similarity index 100%
rename from ui/modules/Linphone/Chat/Event.qml
rename to linphone-desktop/ui/modules/Linphone/Chat/Event.qml
diff --git a/ui/modules/Linphone/Chat/FileMessage.qml b/linphone-desktop/ui/modules/Linphone/Chat/FileMessage.qml
similarity index 100%
rename from ui/modules/Linphone/Chat/FileMessage.qml
rename to linphone-desktop/ui/modules/Linphone/Chat/FileMessage.qml
diff --git a/ui/modules/Linphone/Chat/IncomingMessage.qml b/linphone-desktop/ui/modules/Linphone/Chat/IncomingMessage.qml
similarity index 100%
rename from ui/modules/Linphone/Chat/IncomingMessage.qml
rename to linphone-desktop/ui/modules/Linphone/Chat/IncomingMessage.qml
diff --git a/ui/modules/Linphone/Chat/Message.js b/linphone-desktop/ui/modules/Linphone/Chat/Message.js
similarity index 100%
rename from ui/modules/Linphone/Chat/Message.js
rename to linphone-desktop/ui/modules/Linphone/Chat/Message.js
diff --git a/ui/modules/Linphone/Chat/Message.qml b/linphone-desktop/ui/modules/Linphone/Chat/Message.qml
similarity index 100%
rename from ui/modules/Linphone/Chat/Message.qml
rename to linphone-desktop/ui/modules/Linphone/Chat/Message.qml
diff --git a/ui/modules/Linphone/Chat/OutgoingMessage.qml b/linphone-desktop/ui/modules/Linphone/Chat/OutgoingMessage.qml
similarity index 100%
rename from ui/modules/Linphone/Chat/OutgoingMessage.qml
rename to linphone-desktop/ui/modules/Linphone/Chat/OutgoingMessage.qml
diff --git a/ui/modules/Linphone/Codecs/CodecAttribute.qml b/linphone-desktop/ui/modules/Linphone/Codecs/CodecAttribute.qml
similarity index 100%
rename from ui/modules/Linphone/Codecs/CodecAttribute.qml
rename to linphone-desktop/ui/modules/Linphone/Codecs/CodecAttribute.qml
diff --git a/ui/modules/Linphone/Codecs/CodecLegend.qml b/linphone-desktop/ui/modules/Linphone/Codecs/CodecLegend.qml
similarity index 100%
rename from ui/modules/Linphone/Codecs/CodecLegend.qml
rename to linphone-desktop/ui/modules/Linphone/Codecs/CodecLegend.qml
diff --git a/ui/modules/Linphone/Codecs/CodecsViewer.qml b/linphone-desktop/ui/modules/Linphone/Codecs/CodecsViewer.qml
similarity index 100%
rename from ui/modules/Linphone/Codecs/CodecsViewer.qml
rename to linphone-desktop/ui/modules/Linphone/Codecs/CodecsViewer.qml
diff --git a/ui/modules/Linphone/Contact/Avatar.qml b/linphone-desktop/ui/modules/Linphone/Contact/Avatar.qml
similarity index 100%
rename from ui/modules/Linphone/Contact/Avatar.qml
rename to linphone-desktop/ui/modules/Linphone/Contact/Avatar.qml
diff --git a/ui/modules/Linphone/Contact/Contact.qml b/linphone-desktop/ui/modules/Linphone/Contact/Contact.qml
similarity index 100%
rename from ui/modules/Linphone/Contact/Contact.qml
rename to linphone-desktop/ui/modules/Linphone/Contact/Contact.qml
diff --git a/ui/modules/Linphone/Contact/ContactDescription.qml b/linphone-desktop/ui/modules/Linphone/Contact/ContactDescription.qml
similarity index 100%
rename from ui/modules/Linphone/Contact/ContactDescription.qml
rename to linphone-desktop/ui/modules/Linphone/Contact/ContactDescription.qml
diff --git a/ui/modules/Linphone/Contact/ContactMessageCounter.qml b/linphone-desktop/ui/modules/Linphone/Contact/ContactMessageCounter.qml
similarity index 100%
rename from ui/modules/Linphone/Contact/ContactMessageCounter.qml
rename to linphone-desktop/ui/modules/Linphone/Contact/ContactMessageCounter.qml
diff --git a/ui/modules/Linphone/Dialog/OnlineInstallerDialog.qml b/linphone-desktop/ui/modules/Linphone/Dialog/OnlineInstallerDialog.qml
similarity index 100%
rename from ui/modules/Linphone/Dialog/OnlineInstallerDialog.qml
rename to linphone-desktop/ui/modules/Linphone/Dialog/OnlineInstallerDialog.qml
diff --git a/ui/modules/Linphone/Menus/SipAddressesMenu.qml b/linphone-desktop/ui/modules/Linphone/Menus/SipAddressesMenu.qml
similarity index 100%
rename from ui/modules/Linphone/Menus/SipAddressesMenu.qml
rename to linphone-desktop/ui/modules/Linphone/Menus/SipAddressesMenu.qml
diff --git a/ui/modules/Linphone/Misc/MessageCounter.qml b/linphone-desktop/ui/modules/Linphone/Misc/MessageCounter.qml
similarity index 100%
rename from ui/modules/Linphone/Misc/MessageCounter.qml
rename to linphone-desktop/ui/modules/Linphone/Misc/MessageCounter.qml
diff --git a/ui/modules/Linphone/Notifications/Notification.qml b/linphone-desktop/ui/modules/Linphone/Notifications/Notification.qml
similarity index 100%
rename from ui/modules/Linphone/Notifications/Notification.qml
rename to linphone-desktop/ui/modules/Linphone/Notifications/Notification.qml
diff --git a/ui/modules/Linphone/Notifications/Notification.spec.qml b/linphone-desktop/ui/modules/Linphone/Notifications/Notification.spec.qml
similarity index 100%
rename from ui/modules/Linphone/Notifications/Notification.spec.qml
rename to linphone-desktop/ui/modules/Linphone/Notifications/Notification.spec.qml
diff --git a/ui/modules/Linphone/Notifications/NotificationBasic.qml b/linphone-desktop/ui/modules/Linphone/Notifications/NotificationBasic.qml
similarity index 100%
rename from ui/modules/Linphone/Notifications/NotificationBasic.qml
rename to linphone-desktop/ui/modules/Linphone/Notifications/NotificationBasic.qml
diff --git a/ui/modules/Linphone/Notifications/NotificationNewVersionAvailable.qml b/linphone-desktop/ui/modules/Linphone/Notifications/NotificationNewVersionAvailable.qml
similarity index 100%
rename from ui/modules/Linphone/Notifications/NotificationNewVersionAvailable.qml
rename to linphone-desktop/ui/modules/Linphone/Notifications/NotificationNewVersionAvailable.qml
diff --git a/ui/modules/Linphone/Notifications/NotificationReceivedCall.qml b/linphone-desktop/ui/modules/Linphone/Notifications/NotificationReceivedCall.qml
similarity index 100%
rename from ui/modules/Linphone/Notifications/NotificationReceivedCall.qml
rename to linphone-desktop/ui/modules/Linphone/Notifications/NotificationReceivedCall.qml
diff --git a/ui/modules/Linphone/Notifications/NotificationReceivedFileMessage.qml b/linphone-desktop/ui/modules/Linphone/Notifications/NotificationReceivedFileMessage.qml
similarity index 100%
rename from ui/modules/Linphone/Notifications/NotificationReceivedFileMessage.qml
rename to linphone-desktop/ui/modules/Linphone/Notifications/NotificationReceivedFileMessage.qml
diff --git a/ui/modules/Linphone/Notifications/NotificationReceivedMessage.qml b/linphone-desktop/ui/modules/Linphone/Notifications/NotificationReceivedMessage.qml
similarity index 100%
rename from ui/modules/Linphone/Notifications/NotificationReceivedMessage.qml
rename to linphone-desktop/ui/modules/Linphone/Notifications/NotificationReceivedMessage.qml
diff --git a/ui/modules/Linphone/Notifications/NotificationRecordingCompleted.qml b/linphone-desktop/ui/modules/Linphone/Notifications/NotificationRecordingCompleted.qml
similarity index 100%
rename from ui/modules/Linphone/Notifications/NotificationRecordingCompleted.qml
rename to linphone-desktop/ui/modules/Linphone/Notifications/NotificationRecordingCompleted.qml
diff --git a/ui/modules/Linphone/Notifications/NotificationSnapshotWasTaken.qml b/linphone-desktop/ui/modules/Linphone/Notifications/NotificationSnapshotWasTaken.qml
similarity index 100%
rename from ui/modules/Linphone/Notifications/NotificationSnapshotWasTaken.qml
rename to linphone-desktop/ui/modules/Linphone/Notifications/NotificationSnapshotWasTaken.qml
diff --git a/ui/modules/Linphone/Presence/PresenceLevel.qml b/linphone-desktop/ui/modules/Linphone/Presence/PresenceLevel.qml
similarity index 100%
rename from ui/modules/Linphone/Presence/PresenceLevel.qml
rename to linphone-desktop/ui/modules/Linphone/Presence/PresenceLevel.qml
diff --git a/ui/modules/Linphone/SmartSearchBar/SmartSearchBar.qml b/linphone-desktop/ui/modules/Linphone/SmartSearchBar/SmartSearchBar.qml
similarity index 100%
rename from ui/modules/Linphone/SmartSearchBar/SmartSearchBar.qml
rename to linphone-desktop/ui/modules/Linphone/SmartSearchBar/SmartSearchBar.qml
diff --git a/ui/modules/Linphone/Styles/Account/AccountStatusStyle.qml b/linphone-desktop/ui/modules/Linphone/Styles/Account/AccountStatusStyle.qml
similarity index 100%
rename from ui/modules/Linphone/Styles/Account/AccountStatusStyle.qml
rename to linphone-desktop/ui/modules/Linphone/Styles/Account/AccountStatusStyle.qml
diff --git a/ui/modules/Linphone/Styles/Blocks/CardBlockStyle.qml b/linphone-desktop/ui/modules/Linphone/Styles/Blocks/CardBlockStyle.qml
similarity index 100%
rename from ui/modules/Linphone/Styles/Blocks/CardBlockStyle.qml
rename to linphone-desktop/ui/modules/Linphone/Styles/Blocks/CardBlockStyle.qml
diff --git a/ui/modules/Linphone/Styles/Blocks/RequestBlockStyle.qml b/linphone-desktop/ui/modules/Linphone/Styles/Blocks/RequestBlockStyle.qml
similarity index 100%
rename from ui/modules/Linphone/Styles/Blocks/RequestBlockStyle.qml
rename to linphone-desktop/ui/modules/Linphone/Styles/Blocks/RequestBlockStyle.qml
diff --git a/ui/modules/Linphone/Styles/Calls/CallControlsStyle.qml b/linphone-desktop/ui/modules/Linphone/Styles/Calls/CallControlsStyle.qml
similarity index 100%
rename from ui/modules/Linphone/Styles/Calls/CallControlsStyle.qml
rename to linphone-desktop/ui/modules/Linphone/Styles/Calls/CallControlsStyle.qml
diff --git a/ui/modules/Linphone/Styles/Calls/CallStatisticsStyle.qml b/linphone-desktop/ui/modules/Linphone/Styles/Calls/CallStatisticsStyle.qml
similarity index 100%
rename from ui/modules/Linphone/Styles/Calls/CallStatisticsStyle.qml
rename to linphone-desktop/ui/modules/Linphone/Styles/Calls/CallStatisticsStyle.qml
diff --git a/ui/modules/Linphone/Styles/Calls/CallsStyle.qml b/linphone-desktop/ui/modules/Linphone/Styles/Calls/CallsStyle.qml
similarity index 100%
rename from ui/modules/Linphone/Styles/Calls/CallsStyle.qml
rename to linphone-desktop/ui/modules/Linphone/Styles/Calls/CallsStyle.qml
diff --git a/ui/modules/Linphone/Styles/Calls/ConferenceControlsStyle.qml b/linphone-desktop/ui/modules/Linphone/Styles/Calls/ConferenceControlsStyle.qml
similarity index 100%
rename from ui/modules/Linphone/Styles/Calls/ConferenceControlsStyle.qml
rename to linphone-desktop/ui/modules/Linphone/Styles/Calls/ConferenceControlsStyle.qml
diff --git a/ui/modules/Linphone/Styles/Chat/ChatStyle.qml b/linphone-desktop/ui/modules/Linphone/Styles/Chat/ChatStyle.qml
similarity index 100%
rename from ui/modules/Linphone/Styles/Chat/ChatStyle.qml
rename to linphone-desktop/ui/modules/Linphone/Styles/Chat/ChatStyle.qml
diff --git a/ui/modules/Linphone/Styles/Codecs/CodecsViewerStyle.qml b/linphone-desktop/ui/modules/Linphone/Styles/Codecs/CodecsViewerStyle.qml
similarity index 100%
rename from ui/modules/Linphone/Styles/Codecs/CodecsViewerStyle.qml
rename to linphone-desktop/ui/modules/Linphone/Styles/Codecs/CodecsViewerStyle.qml
diff --git a/ui/modules/Linphone/Styles/Contact/AvatarStyle.qml b/linphone-desktop/ui/modules/Linphone/Styles/Contact/AvatarStyle.qml
similarity index 100%
rename from ui/modules/Linphone/Styles/Contact/AvatarStyle.qml
rename to linphone-desktop/ui/modules/Linphone/Styles/Contact/AvatarStyle.qml
diff --git a/ui/modules/Linphone/Styles/Contact/ContactDescriptionStyle.qml b/linphone-desktop/ui/modules/Linphone/Styles/Contact/ContactDescriptionStyle.qml
similarity index 100%
rename from ui/modules/Linphone/Styles/Contact/ContactDescriptionStyle.qml
rename to linphone-desktop/ui/modules/Linphone/Styles/Contact/ContactDescriptionStyle.qml
diff --git a/ui/modules/Linphone/Styles/Contact/ContactMessageCounterStyle.qml b/linphone-desktop/ui/modules/Linphone/Styles/Contact/ContactMessageCounterStyle.qml
similarity index 100%
rename from ui/modules/Linphone/Styles/Contact/ContactMessageCounterStyle.qml
rename to linphone-desktop/ui/modules/Linphone/Styles/Contact/ContactMessageCounterStyle.qml
diff --git a/ui/modules/Linphone/Styles/Contact/ContactStyle.qml b/linphone-desktop/ui/modules/Linphone/Styles/Contact/ContactStyle.qml
similarity index 100%
rename from ui/modules/Linphone/Styles/Contact/ContactStyle.qml
rename to linphone-desktop/ui/modules/Linphone/Styles/Contact/ContactStyle.qml
diff --git a/ui/modules/Linphone/Styles/Dialog/OnlineInstallerDialogStyle.qml b/linphone-desktop/ui/modules/Linphone/Styles/Dialog/OnlineInstallerDialogStyle.qml
similarity index 100%
rename from ui/modules/Linphone/Styles/Dialog/OnlineInstallerDialogStyle.qml
rename to linphone-desktop/ui/modules/Linphone/Styles/Dialog/OnlineInstallerDialogStyle.qml
diff --git a/ui/modules/Linphone/Styles/Menus/SipAddressesMenuStyle.qml b/linphone-desktop/ui/modules/Linphone/Styles/Menus/SipAddressesMenuStyle.qml
similarity index 100%
rename from ui/modules/Linphone/Styles/Menus/SipAddressesMenuStyle.qml
rename to linphone-desktop/ui/modules/Linphone/Styles/Menus/SipAddressesMenuStyle.qml
diff --git a/ui/modules/Linphone/Styles/Misc/MessageCounterStyle.qml b/linphone-desktop/ui/modules/Linphone/Styles/Misc/MessageCounterStyle.qml
similarity index 100%
rename from ui/modules/Linphone/Styles/Misc/MessageCounterStyle.qml
rename to linphone-desktop/ui/modules/Linphone/Styles/Misc/MessageCounterStyle.qml
diff --git a/ui/modules/Linphone/Styles/Notifications/NotificationBasicStyle.qml b/linphone-desktop/ui/modules/Linphone/Styles/Notifications/NotificationBasicStyle.qml
similarity index 100%
rename from ui/modules/Linphone/Styles/Notifications/NotificationBasicStyle.qml
rename to linphone-desktop/ui/modules/Linphone/Styles/Notifications/NotificationBasicStyle.qml
diff --git a/ui/modules/Linphone/Styles/Notifications/NotificationReceivedCallStyle.qml b/linphone-desktop/ui/modules/Linphone/Styles/Notifications/NotificationReceivedCallStyle.qml
similarity index 100%
rename from ui/modules/Linphone/Styles/Notifications/NotificationReceivedCallStyle.qml
rename to linphone-desktop/ui/modules/Linphone/Styles/Notifications/NotificationReceivedCallStyle.qml
diff --git a/ui/modules/Linphone/Styles/Notifications/NotificationReceivedFileMessageStyle.qml b/linphone-desktop/ui/modules/Linphone/Styles/Notifications/NotificationReceivedFileMessageStyle.qml
similarity index 100%
rename from ui/modules/Linphone/Styles/Notifications/NotificationReceivedFileMessageStyle.qml
rename to linphone-desktop/ui/modules/Linphone/Styles/Notifications/NotificationReceivedFileMessageStyle.qml
diff --git a/ui/modules/Linphone/Styles/Notifications/NotificationReceivedMessageStyle.qml b/linphone-desktop/ui/modules/Linphone/Styles/Notifications/NotificationReceivedMessageStyle.qml
similarity index 100%
rename from ui/modules/Linphone/Styles/Notifications/NotificationReceivedMessageStyle.qml
rename to linphone-desktop/ui/modules/Linphone/Styles/Notifications/NotificationReceivedMessageStyle.qml
diff --git a/ui/modules/Linphone/Styles/Notifications/NotificationStyle.qml b/linphone-desktop/ui/modules/Linphone/Styles/Notifications/NotificationStyle.qml
similarity index 100%
rename from ui/modules/Linphone/Styles/Notifications/NotificationStyle.qml
rename to linphone-desktop/ui/modules/Linphone/Styles/Notifications/NotificationStyle.qml
diff --git a/ui/modules/Linphone/Styles/TelKeypad/TelKeypadStyle.qml b/linphone-desktop/ui/modules/Linphone/Styles/TelKeypad/TelKeypadStyle.qml
similarity index 100%
rename from ui/modules/Linphone/Styles/TelKeypad/TelKeypadStyle.qml
rename to linphone-desktop/ui/modules/Linphone/Styles/TelKeypad/TelKeypadStyle.qml
diff --git a/ui/modules/Linphone/Styles/Timeline/TimelineStyle.qml b/linphone-desktop/ui/modules/Linphone/Styles/Timeline/TimelineStyle.qml
similarity index 100%
rename from ui/modules/Linphone/Styles/Timeline/TimelineStyle.qml
rename to linphone-desktop/ui/modules/Linphone/Styles/Timeline/TimelineStyle.qml
diff --git a/ui/modules/Linphone/Styles/View/SipAddressesViewStyle.qml b/linphone-desktop/ui/modules/Linphone/Styles/View/SipAddressesViewStyle.qml
similarity index 100%
rename from ui/modules/Linphone/Styles/View/SipAddressesViewStyle.qml
rename to linphone-desktop/ui/modules/Linphone/Styles/View/SipAddressesViewStyle.qml
diff --git a/ui/modules/Linphone/Styles/qmldir b/linphone-desktop/ui/modules/Linphone/Styles/qmldir
similarity index 100%
rename from ui/modules/Linphone/Styles/qmldir
rename to linphone-desktop/ui/modules/Linphone/Styles/qmldir
diff --git a/ui/modules/Linphone/TelKeypad/TelKeypad.js b/linphone-desktop/ui/modules/Linphone/TelKeypad/TelKeypad.js
similarity index 100%
rename from ui/modules/Linphone/TelKeypad/TelKeypad.js
rename to linphone-desktop/ui/modules/Linphone/TelKeypad/TelKeypad.js
diff --git a/ui/modules/Linphone/TelKeypad/TelKeypad.qml b/linphone-desktop/ui/modules/Linphone/TelKeypad/TelKeypad.qml
similarity index 100%
rename from ui/modules/Linphone/TelKeypad/TelKeypad.qml
rename to linphone-desktop/ui/modules/Linphone/TelKeypad/TelKeypad.qml
diff --git a/ui/modules/Linphone/TelKeypad/TelKeypadButton.qml b/linphone-desktop/ui/modules/Linphone/TelKeypad/TelKeypadButton.qml
similarity index 100%
rename from ui/modules/Linphone/TelKeypad/TelKeypadButton.qml
rename to linphone-desktop/ui/modules/Linphone/TelKeypad/TelKeypadButton.qml
diff --git a/ui/modules/Linphone/Timeline/Timeline.js b/linphone-desktop/ui/modules/Linphone/Timeline/Timeline.js
similarity index 100%
rename from ui/modules/Linphone/Timeline/Timeline.js
rename to linphone-desktop/ui/modules/Linphone/Timeline/Timeline.js
diff --git a/ui/modules/Linphone/Timeline/Timeline.qml b/linphone-desktop/ui/modules/Linphone/Timeline/Timeline.qml
similarity index 100%
rename from ui/modules/Linphone/Timeline/Timeline.qml
rename to linphone-desktop/ui/modules/Linphone/Timeline/Timeline.qml
diff --git a/ui/modules/Linphone/View/SipAddressesView.qml b/linphone-desktop/ui/modules/Linphone/View/SipAddressesView.qml
similarity index 100%
rename from ui/modules/Linphone/View/SipAddressesView.qml
rename to linphone-desktop/ui/modules/Linphone/View/SipAddressesView.qml
diff --git a/ui/modules/Linphone/qmldir b/linphone-desktop/ui/modules/Linphone/qmldir
similarity index 100%
rename from ui/modules/Linphone/qmldir
rename to linphone-desktop/ui/modules/Linphone/qmldir
diff --git a/ui/scripts/LinphoneUtils/linphone-utils.js b/linphone-desktop/ui/scripts/LinphoneUtils/linphone-utils.js
similarity index 100%
rename from ui/scripts/LinphoneUtils/linphone-utils.js
rename to linphone-desktop/ui/scripts/LinphoneUtils/linphone-utils.js
diff --git a/ui/scripts/LinphoneUtils/qmldir b/linphone-desktop/ui/scripts/LinphoneUtils/qmldir
similarity index 100%
rename from ui/scripts/LinphoneUtils/qmldir
rename to linphone-desktop/ui/scripts/LinphoneUtils/qmldir
diff --git a/ui/scripts/Utils/port-tools.js b/linphone-desktop/ui/scripts/Utils/port-tools.js
similarity index 100%
rename from ui/scripts/Utils/port-tools.js
rename to linphone-desktop/ui/scripts/Utils/port-tools.js
diff --git a/ui/scripts/Utils/qmldir b/linphone-desktop/ui/scripts/Utils/qmldir
similarity index 100%
rename from ui/scripts/Utils/qmldir
rename to linphone-desktop/ui/scripts/Utils/qmldir
diff --git a/ui/scripts/Utils/uri-tools.js b/linphone-desktop/ui/scripts/Utils/uri-tools.js
similarity index 100%
rename from ui/scripts/Utils/uri-tools.js
rename to linphone-desktop/ui/scripts/Utils/uri-tools.js
diff --git a/ui/scripts/Utils/uri-tools.spec.qml b/linphone-desktop/ui/scripts/Utils/uri-tools.spec.qml
similarity index 100%
rename from ui/scripts/Utils/uri-tools.spec.qml
rename to linphone-desktop/ui/scripts/Utils/uri-tools.spec.qml
diff --git a/ui/scripts/Utils/utils.js b/linphone-desktop/ui/scripts/Utils/utils.js
similarity index 100%
rename from ui/scripts/Utils/utils.js
rename to linphone-desktop/ui/scripts/Utils/utils.js
diff --git a/ui/scripts/Utils/utils.spec.qml b/linphone-desktop/ui/scripts/Utils/utils.spec.qml
similarity index 100%
rename from ui/scripts/Utils/utils.spec.qml
rename to linphone-desktop/ui/scripts/Utils/utils.spec.qml
diff --git a/ui/views/App/Calls/AbstractStartingCall.qml b/linphone-desktop/ui/views/App/Calls/AbstractStartingCall.qml
similarity index 100%
rename from ui/views/App/Calls/AbstractStartingCall.qml
rename to linphone-desktop/ui/views/App/Calls/AbstractStartingCall.qml
diff --git a/ui/views/App/Calls/CallsWindow.js b/linphone-desktop/ui/views/App/Calls/CallsWindow.js
similarity index 100%
rename from ui/views/App/Calls/CallsWindow.js
rename to linphone-desktop/ui/views/App/Calls/CallsWindow.js
diff --git a/ui/views/App/Calls/CallsWindow.qml b/linphone-desktop/ui/views/App/Calls/CallsWindow.qml
similarity index 100%
rename from ui/views/App/Calls/CallsWindow.qml
rename to linphone-desktop/ui/views/App/Calls/CallsWindow.qml
diff --git a/ui/views/App/Calls/Conference.qml b/linphone-desktop/ui/views/App/Calls/Conference.qml
similarity index 100%
rename from ui/views/App/Calls/Conference.qml
rename to linphone-desktop/ui/views/App/Calls/Conference.qml
diff --git a/ui/views/App/Calls/Dialogs/CallSipAddress.qml b/linphone-desktop/ui/views/App/Calls/Dialogs/CallSipAddress.qml
similarity index 100%
rename from ui/views/App/Calls/Dialogs/CallSipAddress.qml
rename to linphone-desktop/ui/views/App/Calls/Dialogs/CallSipAddress.qml
diff --git a/ui/views/App/Calls/Dialogs/CallTransfer.qml b/linphone-desktop/ui/views/App/Calls/Dialogs/CallTransfer.qml
similarity index 100%
rename from ui/views/App/Calls/Dialogs/CallTransfer.qml
rename to linphone-desktop/ui/views/App/Calls/Dialogs/CallTransfer.qml
diff --git a/ui/views/App/Calls/Dialogs/ConferenceManager.qml b/linphone-desktop/ui/views/App/Calls/Dialogs/ConferenceManager.qml
similarity index 100%
rename from ui/views/App/Calls/Dialogs/ConferenceManager.qml
rename to linphone-desktop/ui/views/App/Calls/Dialogs/ConferenceManager.qml
diff --git a/ui/views/App/Calls/Dialogs/MultimediaParameters.qml b/linphone-desktop/ui/views/App/Calls/Dialogs/MultimediaParameters.qml
similarity index 100%
rename from ui/views/App/Calls/Dialogs/MultimediaParameters.qml
rename to linphone-desktop/ui/views/App/Calls/Dialogs/MultimediaParameters.qml
diff --git a/ui/views/App/Calls/EndedCall.qml b/linphone-desktop/ui/views/App/Calls/EndedCall.qml
similarity index 100%
rename from ui/views/App/Calls/EndedCall.qml
rename to linphone-desktop/ui/views/App/Calls/EndedCall.qml
diff --git a/ui/views/App/Calls/Incall.js b/linphone-desktop/ui/views/App/Calls/Incall.js
similarity index 100%
rename from ui/views/App/Calls/Incall.js
rename to linphone-desktop/ui/views/App/Calls/Incall.js
diff --git a/ui/views/App/Calls/Incall.qml b/linphone-desktop/ui/views/App/Calls/Incall.qml
similarity index 100%
rename from ui/views/App/Calls/Incall.qml
rename to linphone-desktop/ui/views/App/Calls/Incall.qml
diff --git a/ui/views/App/Calls/IncallAvatar.qml b/linphone-desktop/ui/views/App/Calls/IncallAvatar.qml
similarity index 100%
rename from ui/views/App/Calls/IncallAvatar.qml
rename to linphone-desktop/ui/views/App/Calls/IncallAvatar.qml
diff --git a/ui/views/App/Calls/IncallFullscreenWindow.qml b/linphone-desktop/ui/views/App/Calls/IncallFullscreenWindow.qml
similarity index 100%
rename from ui/views/App/Calls/IncallFullscreenWindow.qml
rename to linphone-desktop/ui/views/App/Calls/IncallFullscreenWindow.qml
diff --git a/ui/views/App/Calls/IncomingCall.qml b/linphone-desktop/ui/views/App/Calls/IncomingCall.qml
similarity index 100%
rename from ui/views/App/Calls/IncomingCall.qml
rename to linphone-desktop/ui/views/App/Calls/IncomingCall.qml
diff --git a/ui/views/App/Calls/OutgoingCall.qml b/linphone-desktop/ui/views/App/Calls/OutgoingCall.qml
similarity index 100%
rename from ui/views/App/Calls/OutgoingCall.qml
rename to linphone-desktop/ui/views/App/Calls/OutgoingCall.qml
diff --git a/ui/views/App/Calls/ZrtpTokenAuthentication.qml b/linphone-desktop/ui/views/App/Calls/ZrtpTokenAuthentication.qml
similarity index 100%
rename from ui/views/App/Calls/ZrtpTokenAuthentication.qml
rename to linphone-desktop/ui/views/App/Calls/ZrtpTokenAuthentication.qml
diff --git a/ui/views/App/Main/Assistant.qml b/linphone-desktop/ui/views/App/Main/Assistant.qml
similarity index 100%
rename from ui/views/App/Main/Assistant.qml
rename to linphone-desktop/ui/views/App/Main/Assistant.qml
diff --git a/ui/views/App/Main/Assistant/ActivateAppSipAccountWithEmail.qml b/linphone-desktop/ui/views/App/Main/Assistant/ActivateAppSipAccountWithEmail.qml
similarity index 100%
rename from ui/views/App/Main/Assistant/ActivateAppSipAccountWithEmail.qml
rename to linphone-desktop/ui/views/App/Main/Assistant/ActivateAppSipAccountWithEmail.qml
diff --git a/ui/views/App/Main/Assistant/ActivateAppSipAccountWithPhoneNumber.qml b/linphone-desktop/ui/views/App/Main/Assistant/ActivateAppSipAccountWithPhoneNumber.qml
similarity index 100%
rename from ui/views/App/Main/Assistant/ActivateAppSipAccountWithPhoneNumber.qml
rename to linphone-desktop/ui/views/App/Main/Assistant/ActivateAppSipAccountWithPhoneNumber.qml
diff --git a/ui/views/App/Main/Assistant/AssistantAbstractView.qml b/linphone-desktop/ui/views/App/Main/Assistant/AssistantAbstractView.qml
similarity index 100%
rename from ui/views/App/Main/Assistant/AssistantAbstractView.qml
rename to linphone-desktop/ui/views/App/Main/Assistant/AssistantAbstractView.qml
diff --git a/ui/views/App/Main/Assistant/AssistantHome.qml b/linphone-desktop/ui/views/App/Main/Assistant/AssistantHome.qml
similarity index 100%
rename from ui/views/App/Main/Assistant/AssistantHome.qml
rename to linphone-desktop/ui/views/App/Main/Assistant/AssistantHome.qml
diff --git a/ui/views/App/Main/Assistant/CreateAppSipAccount.qml b/linphone-desktop/ui/views/App/Main/Assistant/CreateAppSipAccount.qml
similarity index 100%
rename from ui/views/App/Main/Assistant/CreateAppSipAccount.qml
rename to linphone-desktop/ui/views/App/Main/Assistant/CreateAppSipAccount.qml
diff --git a/ui/views/App/Main/Assistant/CreateAppSipAccountWithEmail.qml b/linphone-desktop/ui/views/App/Main/Assistant/CreateAppSipAccountWithEmail.qml
similarity index 100%
rename from ui/views/App/Main/Assistant/CreateAppSipAccountWithEmail.qml
rename to linphone-desktop/ui/views/App/Main/Assistant/CreateAppSipAccountWithEmail.qml
diff --git a/ui/views/App/Main/Assistant/CreateAppSipAccountWithPhoneNumber.qml b/linphone-desktop/ui/views/App/Main/Assistant/CreateAppSipAccountWithPhoneNumber.qml
similarity index 100%
rename from ui/views/App/Main/Assistant/CreateAppSipAccountWithPhoneNumber.qml
rename to linphone-desktop/ui/views/App/Main/Assistant/CreateAppSipAccountWithPhoneNumber.qml
diff --git a/ui/views/App/Main/Assistant/FetchRemoteConfiguration.qml b/linphone-desktop/ui/views/App/Main/Assistant/FetchRemoteConfiguration.qml
similarity index 100%
rename from ui/views/App/Main/Assistant/FetchRemoteConfiguration.qml
rename to linphone-desktop/ui/views/App/Main/Assistant/FetchRemoteConfiguration.qml
diff --git a/ui/views/App/Main/Assistant/UseAppSipAccount.qml b/linphone-desktop/ui/views/App/Main/Assistant/UseAppSipAccount.qml
similarity index 100%
rename from ui/views/App/Main/Assistant/UseAppSipAccount.qml
rename to linphone-desktop/ui/views/App/Main/Assistant/UseAppSipAccount.qml
diff --git a/ui/views/App/Main/Assistant/UseAppSipAccountWithPhoneNumber.qml b/linphone-desktop/ui/views/App/Main/Assistant/UseAppSipAccountWithPhoneNumber.qml
similarity index 100%
rename from ui/views/App/Main/Assistant/UseAppSipAccountWithPhoneNumber.qml
rename to linphone-desktop/ui/views/App/Main/Assistant/UseAppSipAccountWithPhoneNumber.qml
diff --git a/ui/views/App/Main/Assistant/UseAppSipAccountWithUsername.qml b/linphone-desktop/ui/views/App/Main/Assistant/UseAppSipAccountWithUsername.qml
similarity index 100%
rename from ui/views/App/Main/Assistant/UseAppSipAccountWithUsername.qml
rename to linphone-desktop/ui/views/App/Main/Assistant/UseAppSipAccountWithUsername.qml
diff --git a/ui/views/App/Main/Assistant/UseOtherSipAccount.qml b/linphone-desktop/ui/views/App/Main/Assistant/UseOtherSipAccount.qml
similarity index 100%
rename from ui/views/App/Main/Assistant/UseOtherSipAccount.qml
rename to linphone-desktop/ui/views/App/Main/Assistant/UseOtherSipAccount.qml
diff --git a/ui/views/App/Main/ContactEdit.js b/linphone-desktop/ui/views/App/Main/ContactEdit.js
similarity index 100%
rename from ui/views/App/Main/ContactEdit.js
rename to linphone-desktop/ui/views/App/Main/ContactEdit.js
diff --git a/ui/views/App/Main/ContactEdit.qml b/linphone-desktop/ui/views/App/Main/ContactEdit.qml
similarity index 100%
rename from ui/views/App/Main/ContactEdit.qml
rename to linphone-desktop/ui/views/App/Main/ContactEdit.qml
diff --git a/ui/views/App/Main/Contacts.qml b/linphone-desktop/ui/views/App/Main/Contacts.qml
similarity index 100%
rename from ui/views/App/Main/Contacts.qml
rename to linphone-desktop/ui/views/App/Main/Contacts.qml
diff --git a/ui/views/App/Main/Conversation.js b/linphone-desktop/ui/views/App/Main/Conversation.js
similarity index 100%
rename from ui/views/App/Main/Conversation.js
rename to linphone-desktop/ui/views/App/Main/Conversation.js
diff --git a/ui/views/App/Main/Conversation.qml b/linphone-desktop/ui/views/App/Main/Conversation.qml
similarity index 100%
rename from ui/views/App/Main/Conversation.qml
rename to linphone-desktop/ui/views/App/Main/Conversation.qml
diff --git a/ui/views/App/Main/Dialogs/About.qml b/linphone-desktop/ui/views/App/Main/Dialogs/About.qml
similarity index 100%
rename from ui/views/App/Main/Dialogs/About.qml
rename to linphone-desktop/ui/views/App/Main/Dialogs/About.qml
diff --git a/ui/views/App/Main/Dialogs/AuthenticationRequest.js b/linphone-desktop/ui/views/App/Main/Dialogs/AuthenticationRequest.js
similarity index 100%
rename from ui/views/App/Main/Dialogs/AuthenticationRequest.js
rename to linphone-desktop/ui/views/App/Main/Dialogs/AuthenticationRequest.js
diff --git a/ui/views/App/Main/Dialogs/AuthenticationRequest.qml b/linphone-desktop/ui/views/App/Main/Dialogs/AuthenticationRequest.qml
similarity index 100%
rename from ui/views/App/Main/Dialogs/AuthenticationRequest.qml
rename to linphone-desktop/ui/views/App/Main/Dialogs/AuthenticationRequest.qml
diff --git a/ui/views/App/Main/Dialogs/ManageAccount.js b/linphone-desktop/ui/views/App/Main/Dialogs/ManageAccount.js
similarity index 100%
rename from ui/views/App/Main/Dialogs/ManageAccount.js
rename to linphone-desktop/ui/views/App/Main/Dialogs/ManageAccount.js
diff --git a/ui/views/App/Main/Dialogs/ManageAccounts.qml b/linphone-desktop/ui/views/App/Main/Dialogs/ManageAccounts.qml
similarity index 100%
rename from ui/views/App/Main/Dialogs/ManageAccounts.qml
rename to linphone-desktop/ui/views/App/Main/Dialogs/ManageAccounts.qml
diff --git a/ui/views/App/Main/Home.qml b/linphone-desktop/ui/views/App/Main/Home.qml
similarity index 100%
rename from ui/views/App/Main/Home.qml
rename to linphone-desktop/ui/views/App/Main/Home.qml
diff --git a/ui/views/App/Main/InviteFriends.qml b/linphone-desktop/ui/views/App/Main/InviteFriends.qml
similarity index 100%
rename from ui/views/App/Main/InviteFriends.qml
rename to linphone-desktop/ui/views/App/Main/InviteFriends.qml
diff --git a/ui/views/App/Main/MainWindow.js b/linphone-desktop/ui/views/App/Main/MainWindow.js
similarity index 100%
rename from ui/views/App/Main/MainWindow.js
rename to linphone-desktop/ui/views/App/Main/MainWindow.js
diff --git a/ui/views/App/Main/MainWindow.qml b/linphone-desktop/ui/views/App/Main/MainWindow.qml
similarity index 100%
rename from ui/views/App/Main/MainWindow.qml
rename to linphone-desktop/ui/views/App/Main/MainWindow.qml
diff --git a/ui/views/App/Main/MainWindowMenuBar.qml b/linphone-desktop/ui/views/App/Main/MainWindowMenuBar.qml
similarity index 100%
rename from ui/views/App/Main/MainWindowMenuBar.qml
rename to linphone-desktop/ui/views/App/Main/MainWindowMenuBar.qml
diff --git a/ui/views/App/Main/MainWindowTopMenuBar.qml b/linphone-desktop/ui/views/App/Main/MainWindowTopMenuBar.qml
similarity index 100%
rename from ui/views/App/Main/MainWindowTopMenuBar.qml
rename to linphone-desktop/ui/views/App/Main/MainWindowTopMenuBar.qml
diff --git a/ui/views/App/Settings/Dialogs/SettingsSipAccountsEdit.js b/linphone-desktop/ui/views/App/Settings/Dialogs/SettingsSipAccountsEdit.js
similarity index 100%
rename from ui/views/App/Settings/Dialogs/SettingsSipAccountsEdit.js
rename to linphone-desktop/ui/views/App/Settings/Dialogs/SettingsSipAccountsEdit.js
diff --git a/ui/views/App/Settings/Dialogs/SettingsSipAccountsEdit.qml b/linphone-desktop/ui/views/App/Settings/Dialogs/SettingsSipAccountsEdit.qml
similarity index 100%
rename from ui/views/App/Settings/Dialogs/SettingsSipAccountsEdit.qml
rename to linphone-desktop/ui/views/App/Settings/Dialogs/SettingsSipAccountsEdit.qml
diff --git a/ui/views/App/Settings/Dialogs/SettingsVideoPreview.qml b/linphone-desktop/ui/views/App/Settings/Dialogs/SettingsVideoPreview.qml
similarity index 100%
rename from ui/views/App/Settings/Dialogs/SettingsVideoPreview.qml
rename to linphone-desktop/ui/views/App/Settings/Dialogs/SettingsVideoPreview.qml
diff --git a/ui/views/App/Settings/SettingsAdvanced.js b/linphone-desktop/ui/views/App/Settings/SettingsAdvanced.js
similarity index 100%
rename from ui/views/App/Settings/SettingsAdvanced.js
rename to linphone-desktop/ui/views/App/Settings/SettingsAdvanced.js
diff --git a/ui/views/App/Settings/SettingsAdvanced.qml b/linphone-desktop/ui/views/App/Settings/SettingsAdvanced.qml
similarity index 100%
rename from ui/views/App/Settings/SettingsAdvanced.qml
rename to linphone-desktop/ui/views/App/Settings/SettingsAdvanced.qml
diff --git a/ui/views/App/Settings/SettingsAudio.qml b/linphone-desktop/ui/views/App/Settings/SettingsAudio.qml
similarity index 100%
rename from ui/views/App/Settings/SettingsAudio.qml
rename to linphone-desktop/ui/views/App/Settings/SettingsAudio.qml
diff --git a/ui/views/App/Settings/SettingsCallsChat.qml b/linphone-desktop/ui/views/App/Settings/SettingsCallsChat.qml
similarity index 100%
rename from ui/views/App/Settings/SettingsCallsChat.qml
rename to linphone-desktop/ui/views/App/Settings/SettingsCallsChat.qml
diff --git a/ui/views/App/Settings/SettingsNetwork.qml b/linphone-desktop/ui/views/App/Settings/SettingsNetwork.qml
similarity index 100%
rename from ui/views/App/Settings/SettingsNetwork.qml
rename to linphone-desktop/ui/views/App/Settings/SettingsNetwork.qml
diff --git a/ui/views/App/Settings/SettingsSipAccounts.js b/linphone-desktop/ui/views/App/Settings/SettingsSipAccounts.js
similarity index 100%
rename from ui/views/App/Settings/SettingsSipAccounts.js
rename to linphone-desktop/ui/views/App/Settings/SettingsSipAccounts.js
diff --git a/ui/views/App/Settings/SettingsSipAccounts.qml b/linphone-desktop/ui/views/App/Settings/SettingsSipAccounts.qml
similarity index 100%
rename from ui/views/App/Settings/SettingsSipAccounts.qml
rename to linphone-desktop/ui/views/App/Settings/SettingsSipAccounts.qml
diff --git a/ui/views/App/Settings/SettingsUi.js b/linphone-desktop/ui/views/App/Settings/SettingsUi.js
similarity index 100%
rename from ui/views/App/Settings/SettingsUi.js
rename to linphone-desktop/ui/views/App/Settings/SettingsUi.js
diff --git a/ui/views/App/Settings/SettingsUi.qml b/linphone-desktop/ui/views/App/Settings/SettingsUi.qml
similarity index 100%
rename from ui/views/App/Settings/SettingsUi.qml
rename to linphone-desktop/ui/views/App/Settings/SettingsUi.qml
diff --git a/ui/views/App/Settings/SettingsVideo.js b/linphone-desktop/ui/views/App/Settings/SettingsVideo.js
similarity index 100%
rename from ui/views/App/Settings/SettingsVideo.js
rename to linphone-desktop/ui/views/App/Settings/SettingsVideo.js
diff --git a/ui/views/App/Settings/SettingsVideo.qml b/linphone-desktop/ui/views/App/Settings/SettingsVideo.qml
similarity index 100%
rename from ui/views/App/Settings/SettingsVideo.qml
rename to linphone-desktop/ui/views/App/Settings/SettingsVideo.qml
diff --git a/ui/views/App/Settings/SettingsWindow.qml b/linphone-desktop/ui/views/App/Settings/SettingsWindow.qml
similarity index 100%
rename from ui/views/App/Settings/SettingsWindow.qml
rename to linphone-desktop/ui/views/App/Settings/SettingsWindow.qml
diff --git a/ui/views/App/Styles/Calls/CallStyle.qml b/linphone-desktop/ui/views/App/Styles/Calls/CallStyle.qml
similarity index 100%
rename from ui/views/App/Styles/Calls/CallStyle.qml
rename to linphone-desktop/ui/views/App/Styles/Calls/CallStyle.qml
diff --git a/ui/views/App/Styles/Calls/CallsWindowStyle.qml b/linphone-desktop/ui/views/App/Styles/Calls/CallsWindowStyle.qml
similarity index 100%
rename from ui/views/App/Styles/Calls/CallsWindowStyle.qml
rename to linphone-desktop/ui/views/App/Styles/Calls/CallsWindowStyle.qml
diff --git a/ui/views/App/Styles/Calls/ConferenceStyle.qml b/linphone-desktop/ui/views/App/Styles/Calls/ConferenceStyle.qml
similarity index 100%
rename from ui/views/App/Styles/Calls/ConferenceStyle.qml
rename to linphone-desktop/ui/views/App/Styles/Calls/ConferenceStyle.qml
diff --git a/ui/views/App/Styles/Calls/Dialogs/CallSipAddressStyle.qml b/linphone-desktop/ui/views/App/Styles/Calls/Dialogs/CallSipAddressStyle.qml
similarity index 100%
rename from ui/views/App/Styles/Calls/Dialogs/CallSipAddressStyle.qml
rename to linphone-desktop/ui/views/App/Styles/Calls/Dialogs/CallSipAddressStyle.qml
diff --git a/ui/views/App/Styles/Calls/Dialogs/CallTransferStyle.qml b/linphone-desktop/ui/views/App/Styles/Calls/Dialogs/CallTransferStyle.qml
similarity index 100%
rename from ui/views/App/Styles/Calls/Dialogs/CallTransferStyle.qml
rename to linphone-desktop/ui/views/App/Styles/Calls/Dialogs/CallTransferStyle.qml
diff --git a/ui/views/App/Styles/Calls/Dialogs/ConferenceManagerStyle.qml b/linphone-desktop/ui/views/App/Styles/Calls/Dialogs/ConferenceManagerStyle.qml
similarity index 100%
rename from ui/views/App/Styles/Calls/Dialogs/ConferenceManagerStyle.qml
rename to linphone-desktop/ui/views/App/Styles/Calls/Dialogs/ConferenceManagerStyle.qml
diff --git a/ui/views/App/Styles/Calls/Dialogs/MultimediaParametersStyle.qml b/linphone-desktop/ui/views/App/Styles/Calls/Dialogs/MultimediaParametersStyle.qml
similarity index 100%
rename from ui/views/App/Styles/Calls/Dialogs/MultimediaParametersStyle.qml
rename to linphone-desktop/ui/views/App/Styles/Calls/Dialogs/MultimediaParametersStyle.qml
diff --git a/ui/views/App/Styles/Main/Assistant/ActivateAppSipAccountWithEmailStyle.qml b/linphone-desktop/ui/views/App/Styles/Main/Assistant/ActivateAppSipAccountWithEmailStyle.qml
similarity index 100%
rename from ui/views/App/Styles/Main/Assistant/ActivateAppSipAccountWithEmailStyle.qml
rename to linphone-desktop/ui/views/App/Styles/Main/Assistant/ActivateAppSipAccountWithEmailStyle.qml
diff --git a/ui/views/App/Styles/Main/Assistant/ActivateAppSipAccountWithPhoneNumberStyle.qml b/linphone-desktop/ui/views/App/Styles/Main/Assistant/ActivateAppSipAccountWithPhoneNumberStyle.qml
similarity index 100%
rename from ui/views/App/Styles/Main/Assistant/ActivateAppSipAccountWithPhoneNumberStyle.qml
rename to linphone-desktop/ui/views/App/Styles/Main/Assistant/ActivateAppSipAccountWithPhoneNumberStyle.qml
diff --git a/ui/views/App/Styles/Main/Assistant/AssistantAbstractViewStyle.qml b/linphone-desktop/ui/views/App/Styles/Main/Assistant/AssistantAbstractViewStyle.qml
similarity index 100%
rename from ui/views/App/Styles/Main/Assistant/AssistantAbstractViewStyle.qml
rename to linphone-desktop/ui/views/App/Styles/Main/Assistant/AssistantAbstractViewStyle.qml
diff --git a/ui/views/App/Styles/Main/Assistant/AssistantHomeStyle.qml b/linphone-desktop/ui/views/App/Styles/Main/Assistant/AssistantHomeStyle.qml
similarity index 100%
rename from ui/views/App/Styles/Main/Assistant/AssistantHomeStyle.qml
rename to linphone-desktop/ui/views/App/Styles/Main/Assistant/AssistantHomeStyle.qml
diff --git a/ui/views/App/Styles/Main/Assistant/CreateAppSipAccountStyle.qml b/linphone-desktop/ui/views/App/Styles/Main/Assistant/CreateAppSipAccountStyle.qml
similarity index 100%
rename from ui/views/App/Styles/Main/Assistant/CreateAppSipAccountStyle.qml
rename to linphone-desktop/ui/views/App/Styles/Main/Assistant/CreateAppSipAccountStyle.qml
diff --git a/ui/views/App/Styles/Main/Assistant/UseAppSipAccountStyle.qml b/linphone-desktop/ui/views/App/Styles/Main/Assistant/UseAppSipAccountStyle.qml
similarity index 100%
rename from ui/views/App/Styles/Main/Assistant/UseAppSipAccountStyle.qml
rename to linphone-desktop/ui/views/App/Styles/Main/Assistant/UseAppSipAccountStyle.qml
diff --git a/ui/views/App/Styles/Main/AssistantStyle.qml b/linphone-desktop/ui/views/App/Styles/Main/AssistantStyle.qml
similarity index 100%
rename from ui/views/App/Styles/Main/AssistantStyle.qml
rename to linphone-desktop/ui/views/App/Styles/Main/AssistantStyle.qml
diff --git a/ui/views/App/Styles/Main/ContactEditStyle.qml b/linphone-desktop/ui/views/App/Styles/Main/ContactEditStyle.qml
similarity index 100%
rename from ui/views/App/Styles/Main/ContactEditStyle.qml
rename to linphone-desktop/ui/views/App/Styles/Main/ContactEditStyle.qml
diff --git a/ui/views/App/Styles/Main/ContactsStyle.qml b/linphone-desktop/ui/views/App/Styles/Main/ContactsStyle.qml
similarity index 100%
rename from ui/views/App/Styles/Main/ContactsStyle.qml
rename to linphone-desktop/ui/views/App/Styles/Main/ContactsStyle.qml
diff --git a/ui/views/App/Styles/Main/ConversationStyle.qml b/linphone-desktop/ui/views/App/Styles/Main/ConversationStyle.qml
similarity index 100%
rename from ui/views/App/Styles/Main/ConversationStyle.qml
rename to linphone-desktop/ui/views/App/Styles/Main/ConversationStyle.qml
diff --git a/ui/views/App/Styles/Main/Dialogs/AboutStyle.qml b/linphone-desktop/ui/views/App/Styles/Main/Dialogs/AboutStyle.qml
similarity index 100%
rename from ui/views/App/Styles/Main/Dialogs/AboutStyle.qml
rename to linphone-desktop/ui/views/App/Styles/Main/Dialogs/AboutStyle.qml
diff --git a/ui/views/App/Styles/Main/Dialogs/AuthenticationRequestStyle.qml b/linphone-desktop/ui/views/App/Styles/Main/Dialogs/AuthenticationRequestStyle.qml
similarity index 100%
rename from ui/views/App/Styles/Main/Dialogs/AuthenticationRequestStyle.qml
rename to linphone-desktop/ui/views/App/Styles/Main/Dialogs/AuthenticationRequestStyle.qml
diff --git a/ui/views/App/Styles/Main/Dialogs/ManageAccountsStyle.qml b/linphone-desktop/ui/views/App/Styles/Main/Dialogs/ManageAccountsStyle.qml
similarity index 100%
rename from ui/views/App/Styles/Main/Dialogs/ManageAccountsStyle.qml
rename to linphone-desktop/ui/views/App/Styles/Main/Dialogs/ManageAccountsStyle.qml
diff --git a/ui/views/App/Styles/Main/HomeStyle.qml b/linphone-desktop/ui/views/App/Styles/Main/HomeStyle.qml
similarity index 100%
rename from ui/views/App/Styles/Main/HomeStyle.qml
rename to linphone-desktop/ui/views/App/Styles/Main/HomeStyle.qml
diff --git a/ui/views/App/Styles/Main/InviteFriendsStyle.qml b/linphone-desktop/ui/views/App/Styles/Main/InviteFriendsStyle.qml
similarity index 100%
rename from ui/views/App/Styles/Main/InviteFriendsStyle.qml
rename to linphone-desktop/ui/views/App/Styles/Main/InviteFriendsStyle.qml
diff --git a/ui/views/App/Styles/Main/MainWindowStyle.qml b/linphone-desktop/ui/views/App/Styles/Main/MainWindowStyle.qml
similarity index 100%
rename from ui/views/App/Styles/Main/MainWindowStyle.qml
rename to linphone-desktop/ui/views/App/Styles/Main/MainWindowStyle.qml
diff --git a/ui/views/App/Styles/Settings/Dialogs/SettingsSipAccountsEditStyle.qml b/linphone-desktop/ui/views/App/Styles/Settings/Dialogs/SettingsSipAccountsEditStyle.qml
similarity index 100%
rename from ui/views/App/Styles/Settings/Dialogs/SettingsSipAccountsEditStyle.qml
rename to linphone-desktop/ui/views/App/Styles/Settings/Dialogs/SettingsSipAccountsEditStyle.qml
diff --git a/ui/views/App/Styles/Settings/Dialogs/SettingsVideoPreviewStyle.qml b/linphone-desktop/ui/views/App/Styles/Settings/Dialogs/SettingsVideoPreviewStyle.qml
similarity index 100%
rename from ui/views/App/Styles/Settings/Dialogs/SettingsVideoPreviewStyle.qml
rename to linphone-desktop/ui/views/App/Styles/Settings/Dialogs/SettingsVideoPreviewStyle.qml
diff --git a/ui/views/App/Styles/Settings/SettingsAdvancedStyle.qml b/linphone-desktop/ui/views/App/Styles/Settings/SettingsAdvancedStyle.qml
similarity index 100%
rename from ui/views/App/Styles/Settings/SettingsAdvancedStyle.qml
rename to linphone-desktop/ui/views/App/Styles/Settings/SettingsAdvancedStyle.qml
diff --git a/ui/views/App/Styles/Settings/SettingsAudioStyle.qml b/linphone-desktop/ui/views/App/Styles/Settings/SettingsAudioStyle.qml
similarity index 100%
rename from ui/views/App/Styles/Settings/SettingsAudioStyle.qml
rename to linphone-desktop/ui/views/App/Styles/Settings/SettingsAudioStyle.qml
diff --git a/ui/views/App/Styles/Settings/SettingsWindowStyle.qml b/linphone-desktop/ui/views/App/Styles/Settings/SettingsWindowStyle.qml
similarity index 100%
rename from ui/views/App/Styles/Settings/SettingsWindowStyle.qml
rename to linphone-desktop/ui/views/App/Styles/Settings/SettingsWindowStyle.qml
diff --git a/ui/views/App/Styles/qmldir b/linphone-desktop/ui/views/App/Styles/qmldir
similarity index 100%
rename from ui/views/App/Styles/qmldir
rename to linphone-desktop/ui/views/App/Styles/qmldir
diff --git a/prepare.py b/prepare.py
deleted file mode 100755
index a0ff25018..000000000
--- a/prepare.py
+++ /dev/null
@@ -1,271 +0,0 @@
-#!/usr/bin/env python
-
-############################################################################
-# prepare.py
-# Copyright (C) 2015-2018 Belledonne Communications, Grenoble France
-#
-############################################################################
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License
-# as published by the Free Software Foundation; either version 2
-# of the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-#
-############################################################################
-
-import os
-import platform
-import sys
-from logging import error, warning, info
-from subprocess import Popen
-sys.dont_write_bytecode = True
-sys.path.insert(0, 'linphone-sdk/cmake-builder')
-try:
- import prepare
-except Exception as e:
- error(
- "Could not find prepare module: {}, probably missing linphone-sdk/cmake-builder? Try running:\n"
- "git submodule sync && git submodule update --init --recursive".format(e))
- exit(1)
-
-
-
-class DesktopTarget(prepare.Target):
-
- def __init__(self, group_builders=False):
- prepare.Target.__init__(self, 'desktop')
- current_path = os.path.dirname(os.path.realpath(__file__))
- self.config_file = 'configs/config-desktop.cmake'
- self.output = 'OUTPUT/' + self.name
- self.external_source_path = os.path.join(current_path, 'linphone-sdk')
- self.alternate_external_source_path = os.path.join(current_path, 'submodules')
- self.packaging_args = [
- "-DENABLE_RELATIVE_PREFIX=YES"
- ]
- external_builders_path = os.path.join(current_path, 'cmake_builder')
- self.additional_args = [
- "-DLINPHONE_BUILDER_EXTERNAL_BUILDERS_PATH=" + external_builders_path,
- "-DLINPHONE_BUILDER_TARGET=linphoneqt"
- ]
-
-
-class DesktopRaspberryTarget(prepare.Target):
-
- def __init__(self, group_builders=False):
- prepare.Target.__init__(self, 'desktop-raspberry')
- current_path = os.path.dirname(os.path.realpath(__file__))
- self.required_build_platforms = ['Linux']
- self.config_file = 'configs/config-desktop-raspberry.cmake'
- self.toolchain_file = 'toolchains/toolchain-raspberry.cmake'
- self.output = 'OUTPUT/' + self.name
- self.external_source_path = os.path.join(current_path, 'linphone-sdk')
- self.alternate_external_source_path = os.path.join(current_path, 'submodules')
- self.packaging_args = [
- "-DCMAKE_INSTALL_RPATH=$ORIGIN/../lib",
- "-DENABLE_RELATIVE_PREFIX=YES"
- ]
-
-
-class DesktopRpmTarget(prepare.Target):
-
- def __init__(self, group_builders=False):
- prepare.Target.__init__(self, 'desktop-rpm')
- current_path = os.path.dirname(os.path.realpath(__file__))
- self.config_file = 'configs/config-desktop-rpm.cmake'
- self.output = 'OUTPUT/' + self.name
- self.external_source_path = os.path.join(current_path, 'linphone-sdk')
- self.alternate_external_source_path = os.path.join(current_path, 'submodules')
- external_builders_path = os.path.join(current_path, 'cmake_builder')
- self.additional_args = [
- "-DLINPHONE_BUILDER_EXTERNAL_BUILDERS_PATH=" + external_builders_path,
- "-DLINPHONE_BUILDER_TARGET=linphoneqt"
- ]
-
-
-class NoUITarget(prepare.Target):
-
- def __init__(self, group_builders=False):
- prepare.Target.__init__(self, 'no-ui')
- current_path = os.path.dirname(os.path.realpath(__file__))
- self.config_file = 'configs/config-desktop.cmake'
- self.output = 'OUTPUT/' + self.name
- self.external_source_path = os.path.join(current_path, 'linphone-sdk')
- self.alternate_external_source_path = os.path.join(current_path, 'submodules')
- self.packaging_args = [
- "-DCMAKE_INSTALL_RPATH=$ORIGIN/../lib",
- "-DENABLE_RELATIVE_PREFIX=YES",
- "-DENABLE_CXX_WRAPPER=OFF"
- ]
-
-
-
-
-class PythonTarget(prepare.Target):
-
- def __init__(self):
- prepare.Target.__init__(self, 'python')
- current_path = os.path.dirname(os.path.realpath(__file__))
- self.config_file = 'configs/config-python.cmake'
- self.output = 'OUTPUT/' + self.name
- self.external_source_path = os.path.join(current_path, 'linphone-sdk')
- self.alternate_external_source_path = os.path.join(current_path, 'submodules')
- external_builders_path = os.path.join(current_path, 'cmake_builder')
- self.additional_args += [
- "-DLINPHONE_BUILDER_EXTERNAL_BUILDERS_PATH=" + external_builders_path,
- "-DLINPHONE_BUILDER_PYTHON_VERSION={}.{}".format(sys.version_info.major, sys.version_info.minor)
- ]
-
-
-class PythonRaspberryTarget(prepare.Target):
-
- def __init__(self):
- prepare.Target.__init__(self, 'python-raspberry')
- current_path = os.path.dirname(os.path.realpath(__file__))
- self.required_build_platforms = ['Linux']
- self.config_file = 'configs/config-python-raspberry.cmake'
- self.toolchain_file = 'toolchains/toolchain-raspberry.cmake'
- self.output = 'OUTPUT/' + self.name
- self.external_source_path = os.path.join(current_path, 'linphone-sdk')
- self.alternate_external_source_path = os.path.join(current_path, 'submodules')
-
-
-
-desktop_targets = {
- 'desktop': DesktopTarget(),
- 'desktop-raspberry': DesktopRaspberryTarget(),
- 'desktop-rpm': DesktopRpmTarget(),
- 'no-ui' : NoUITarget(),
- 'python': PythonTarget(),
- 'python-raspberry': PythonRaspberryTarget()
-}
-
-class DesktopPreparator(prepare.Preparator):
-
- def __init__(self, targets=desktop_targets, default_targets=['desktop']):
- prepare.Preparator.__init__(self, targets, default_targets)
- self.veryclean = True
- self.argparser.add_argument('-ac', '--all-codecs', help="Enable all codecs, including the non-free ones", action='store_true')
- self.argparser.add_argument('-sys', '--use-system-dependencies', help="Find dependencies on the system.", action='store_true')
- self.argparser.add_argument('-p', '--package', help="Build an installation package (only on Mac OSX and Windows).", action='store_true')
- self.argparser.add_argument('-ps', '--package-source', help="Build source packages for the dependencies.", action='store_true')
-
- def parse_args(self):
- prepare.Preparator.parse_args(self)
-
- if self.args.use_system_dependencies:
- self.additional_args += ["-DLINPHONE_BUILDER_USE_SYSTEM_DEPENDENCIES=YES"]
-
- if self.args.all_codecs:
- self.additional_args += ["-DENABLE_GPL_THIRD_PARTIES=YES"]
- self.additional_args += ["-DENABLE_NON_FREE_CODECS=YES"]
- self.additional_args += ["-DENABLE_AMRNB=YES"]
- self.additional_args += ["-DENABLE_AMRWB=YES"]
- self.additional_args += ["-DENABLE_G729=YES"]
- self.additional_args += ["-DENABLE_GSM=YES"]
- self.additional_args += ["-DENABLE_ILBC=YES"]
- self.additional_args += ["-DENABLE_ISAC=YES"]
- self.additional_args += ["-DENABLE_OPUS=YES"]
- self.additional_args += ["-DENABLE_SILK=YES"]
- self.additional_args += ["-DENABLE_SPEEX=YES"]
- self.additional_args += ["-DENABLE_FFMPEG=YES"]
- self.additional_args += ["-DENABLE_H263=YES"]
- self.additional_args += ["-DENABLE_H263P=YES"]
- self.additional_args += ["-DENABLE_MPEG4=YES"]
- self.additional_args += ["-DENABLE_OPENH264=YES"]
- self.additional_args += ["-DENABLE_VPX=YES"]
-
- def check_environment(self):
- ret = prepare.Preparator.check_environment(self)
-
- if "no-ui" in self.targets:
- return ret
- if platform.system() == 'Windows':
- ret |= not self.check_is_installed('mingw-get', 'MinGW (https://sourceforge.net/projects/mingw/files/Installer/)')
- if platform.system() == 'Windows':
- doxygen_prog = 'doxygen (http://www.stack.nl/~dimitri/doxygen/download.html)'
- graphviz_prog = 'graphviz (http://www.graphviz.org/download/)'
- else:
- doxygen_prog = 'doxygen'
- graphviz_prog = 'graphviz'
- ret |= not self.check_is_installed('doxygen', doxygen_prog)
- ret |= not self.check_is_installed('dot', graphviz_prog)
- ret |= not self.check_python_module_is_present('pystache')
- ret |= not self.check_python_module_is_present('six')
- if "python" in self.args.target or "python-raspberry" in self.args.target:
- ret |= not self.check_python_module_is_present('wheel')
-
- return ret
-
- def show_missing_dependencies(self):
- if self.missing_dependencies:
- error("The following binaries are missing: {}. Please install these packages:\n\t{}".format(
- " ".join(self.missing_dependencies.keys()),
- " ".join(self.missing_dependencies.values())))
-
- def clean(self):
- prepare.Preparator.clean(self)
- if os.path.isfile('Makefile'):
- os.remove('Makefile')
- if os.path.isdir('WORK') and not os.listdir('WORK'):
- os.rmdir('WORK')
- if os.path.isdir('OUTPUT') and not os.listdir('OUTPUT'):
- os.rmdir('OUTPUT')
-
- def generate_makefile(self, generator, project_file=''):
- targets = self.args.target
- targets_str = ""
- for target in targets:
- targets_str += """
-{target}: {target}-build
-
-{target}-build:
-\t{generator} WORK/{target}/cmake/{project_file}
-\t@echo "Done"
-""".format(target=target, generator=generator, project_file=project_file)
- makefile = """
-targets={targets}
-
-.PHONY: all
-
-all: build
-
-build: $(addsuffix -build, $(targets))
-
-{targets_str}
-
-help-prepare-options:
-\t@echo "prepare.py was previously executed with the following options:"
-\t@echo " ./prepare.py {options}"
-
-help: help-prepare-options
-\t@echo ""
-\t@echo "(please read the README.md file first)"
-\t@echo ""
-\t@echo "Available targets: {targets}"
-\t@echo ""
-""".format(targets=' '.join(targets), targets_str=targets_str, options=' '.join(self.argv), generator=generator)
- f = open('Makefile', 'w')
- f.write(makefile)
- f.close()
-
-
-
-def main():
- preparator = DesktopPreparator()
- preparator.parse_args()
- if preparator.check_environment() != 0:
- preparator.show_environment_errors()
- return 1
- return preparator.run()
-
-if __name__ == "__main__":
- sys.exit(main())