mirror of https://github.com/procxx/kepka.git
Add cmake files
This commit is contained in:
parent
af2fd8938a
commit
c28a457572
|
@ -0,0 +1,42 @@
|
|||
cmake_minimum_required(VERSION 3.9)
|
||||
project(telegram-desktop)
|
||||
|
||||
if (EXISTS ${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
|
||||
include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
|
||||
conan_basic_setup()
|
||||
else()
|
||||
find_package(OpenSSL REQUIRED)
|
||||
endif()
|
||||
|
||||
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cotire/CMake;${PROJECT_SOURCE_DIR}/modules/")
|
||||
include(cotire)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 14)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED YES)
|
||||
set(CMAKE_CXX_EXTENSIONS OFF)
|
||||
|
||||
set(CMAKE_AUTOMOC ON)
|
||||
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
||||
|
||||
# Needs OpenAL-SOFT
|
||||
# Install via `brew install openal-soft` and configure with `env OPENALDIR=/usr/local/opt/openal-soft`
|
||||
find_package(OpenAL REQUIRED)
|
||||
find_package(ZLIB REQUIRED)
|
||||
find_package(OpenSSL REQUIRED)
|
||||
find_package(FFmpeg REQUIRED)
|
||||
find_package(ZLIB REQUIRED)
|
||||
#@todo Turn into find_package(Opus REQUIRED)
|
||||
find_library(OPUS_LIB opus)
|
||||
find_path(OPUS_INCLUDE_DIR opus/opus.h)
|
||||
|
||||
if (NOT SWSCALE_FOUND)
|
||||
message(FATAL_ERROR "FFmpeg swscale is required")
|
||||
endif()
|
||||
if (NOT SWRESAMPLE_FOUND)
|
||||
message(FATAL_ERROR "FFmpeg swresample is required")
|
||||
endif()
|
||||
if (NOT OPUS_LIB)
|
||||
message(FATAL_ERROR "opus codec is required")
|
||||
endif()
|
||||
|
||||
add_subdirectory(Telegram)
|
|
@ -0,0 +1,683 @@
|
|||
find_package(Qt5 COMPONENTS Core Gui Widgets Network REQUIRED)
|
||||
|
||||
# defines
|
||||
if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
||||
if (CMAKE_SIZEOF_VOID_P EQUAL 8)
|
||||
add_definitions(-DQ_OS_LINUX64)
|
||||
else()
|
||||
add_definitions(-DQ_OS_LINUX32)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
##======================
|
||||
## Codegen Tools
|
||||
##======================
|
||||
|
||||
include_directories(SourceFiles)
|
||||
add_subdirectory(SourceFiles/codegen)
|
||||
|
||||
#-w<(PRODUCT_DIR)/../.. -- wtf is that
|
||||
add_custom_command(
|
||||
COMMENT "Generating palette"
|
||||
OUTPUT
|
||||
styles/palette.h
|
||||
styles/palette.cpp
|
||||
COMMAND
|
||||
codegen_style -I${CMAKE_CURRENT_SOURCE_DIR}/Resources -I${CMAKE_CURRENT_SOURCE_DIR}
|
||||
-o${CMAKE_CURRENT_BINARY_DIR}/styles -w${CMAKE_SOURCE_DIR}
|
||||
colors.palette
|
||||
WORKING_DIRECTORY styles
|
||||
DEPENDS
|
||||
codegen_style
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/Resources/colors.palette
|
||||
MAIN_DEPENDENCY ${CMAKE_CURRENT_SOURCE_DIR}/Resources/colors.palette
|
||||
)
|
||||
add_custom_target(palette_output
|
||||
DEPENDS styles/palette.h styles/palette.cpp)
|
||||
|
||||
add_custom_command(
|
||||
COMMENT "Generating numbers"
|
||||
OUTPUT
|
||||
numbers.h
|
||||
numbers.cpp
|
||||
COMMAND
|
||||
codegen_numbers -o${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/Resources/numbers.txt
|
||||
WORKING_DIRECTORY .
|
||||
DEPENDS
|
||||
codegen_numbers
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/Resources/numbers.txt
|
||||
MAIN_DEPENDENCY ${CMAKE_CURRENT_SOURCE_DIR}/Resources/numbers.txt
|
||||
)
|
||||
add_custom_target(numbers_output
|
||||
DEPENDS numbers.h numbers.cpp)
|
||||
|
||||
add_custom_command(
|
||||
COMMENT "Generating langs"
|
||||
OUTPUT
|
||||
lang_auto.h
|
||||
lang_auto.cpp
|
||||
COMMAND
|
||||
codegen_lang -o${CMAKE_CURRENT_BINARY_DIR} -w${CMAKE_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/Resources/langs/lang.strings
|
||||
WORKING_DIRECTORY .
|
||||
DEPENDS
|
||||
codegen_lang
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/Resources/langs/lang.strings
|
||||
MAIN_DEPENDENCY ${CMAKE_CURRENT_SOURCE_DIR}/Resources/langs/lang.strings
|
||||
)
|
||||
add_custom_target(lang_output
|
||||
DEPENDS lang_auto.h lang_auto.cpp)
|
||||
|
||||
add_custom_command(
|
||||
COMMENT "Generating emoji"
|
||||
OUTPUT
|
||||
emoji.cpp
|
||||
emoji.h
|
||||
emoji_suggestions_data.cpp
|
||||
emoji_suggestions_data.h
|
||||
COMMAND
|
||||
codegen_emoji ${CMAKE_CURRENT_SOURCE_DIR}/Resources/emoji_autocomplete.json -o ${CMAKE_CURRENT_BINARY_DIR}
|
||||
WORKING_DIRECTORY .
|
||||
DEPENDS
|
||||
codegen_emoji
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/Resources/emoji_autocomplete.json
|
||||
VERBATIM
|
||||
)
|
||||
add_custom_target(emoji_output
|
||||
DEPENDS
|
||||
emoji.h
|
||||
emoji.cpp
|
||||
emoji_suggestions_data.cpp
|
||||
emoji_suggestions_data.h
|
||||
)
|
||||
|
||||
add_custom_command(
|
||||
COMMENT "Generating scheme"
|
||||
OUTPUT
|
||||
scheme.cpp
|
||||
scheme.h
|
||||
COMMAND
|
||||
python ${CMAKE_CURRENT_SOURCE_DIR}/SourceFiles/codegen/scheme/codegen_scheme.py -o${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/Resources/scheme.tl
|
||||
WORKING_DIRECTORY .
|
||||
DEPENDS
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/SourceFiles/codegen/scheme/codegen_scheme.py
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/Resources/scheme.tl
|
||||
MAIN_DEPENDENCY ${CMAKE_CURRENT_SOURCE_DIR}/Resources/scheme.tl
|
||||
VERBATIM
|
||||
)
|
||||
add_custom_target(scheme_output
|
||||
DEPENDS scheme.h scheme.cpp)
|
||||
|
||||
##========
|
||||
|
||||
list(APPEND style_files
|
||||
Resources/basic
|
||||
SourceFiles/boxes/boxes
|
||||
SourceFiles/calls/calls
|
||||
SourceFiles/chat_helpers/chat_helpers
|
||||
SourceFiles/dialogs/dialogs
|
||||
SourceFiles/history/history
|
||||
SourceFiles/intro/intro
|
||||
SourceFiles/media/player/media_player
|
||||
SourceFiles/media/view/mediaview
|
||||
SourceFiles/overview/overview
|
||||
SourceFiles/profile/profile
|
||||
SourceFiles/settings/settings
|
||||
SourceFiles/ui/widgets/widgets
|
||||
SourceFiles/window/window
|
||||
)
|
||||
|
||||
foreach (src ${style_files})
|
||||
# '-w<(PRODUCT_DIR)/../..',
|
||||
get_filename_component(src_file ${src} NAME)
|
||||
add_custom_command(
|
||||
COMMENT "Generating ${src_file}"
|
||||
OUTPUT
|
||||
${CMAKE_CURRENT_BINARY_DIR}/styles/style_${src_file}.h
|
||||
${CMAKE_CURRENT_BINARY_DIR}/styles/style_${src_file}.cpp
|
||||
COMMAND
|
||||
codegen_style -I${CMAKE_CURRENT_SOURCE_DIR}/Resources -I${CMAKE_CURRENT_SOURCE_DIR}
|
||||
-I${CMAKE_CURRENT_SOURCE_DIR}/SourceFiles
|
||||
-o${CMAKE_CURRENT_BINARY_DIR}/styles -w${CMAKE_SOURCE_DIR}
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/${src}.style
|
||||
DEPENDS
|
||||
codegen_style
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/${src}.style
|
||||
MAIN_DEPENDENCY ${CMAKE_CURRENT_SOURCE_DIR}/${src}.style
|
||||
)
|
||||
add_custom_target(${src_file}_styles_output
|
||||
DEPENDS
|
||||
${CMAKE_CURRENT_BINARY_DIR}/styles/style_${src_file}.h
|
||||
${CMAKE_CURRENT_BINARY_DIR}/styles/style_${src_file}.cpp
|
||||
)
|
||||
|
||||
list(APPEND style_sources
|
||||
${CMAKE_CURRENT_BINARY_DIR}/styles/style_${src_file}.cpp)
|
||||
|
||||
endforeach()
|
||||
|
||||
##======================
|
||||
## Main app
|
||||
##======================
|
||||
|
||||
#add_subdirectory(SourceFiles/boxes)
|
||||
# ^ Unused: cotire PCH needs more rigid structure with targets defined from the same cmakelists file.
|
||||
# To do: get rid of the PCH requirement for more flexible build structure.
|
||||
|
||||
set(APP_SRC
|
||||
${CMAKE_CURRENT_BINARY_DIR}/styles/palette.cpp
|
||||
${CMAKE_CURRENT_BINARY_DIR}/numbers.cpp
|
||||
${CMAKE_CURRENT_BINARY_DIR}/lang_auto.cpp
|
||||
${CMAKE_CURRENT_BINARY_DIR}/scheme.cpp
|
||||
${CMAKE_CURRENT_BINARY_DIR}/emoji.cpp
|
||||
${CMAKE_CURRENT_BINARY_DIR}/emoji_suggestions_data.cpp
|
||||
${style_sources}
|
||||
|
||||
SourceFiles/base/observer.cpp
|
||||
SourceFiles/base/parse_helper.cpp
|
||||
SourceFiles/base/qthelp_url.cpp
|
||||
SourceFiles/base/runtime_composer.cpp
|
||||
SourceFiles/base/task_queue.cpp
|
||||
SourceFiles/base/timer.cpp
|
||||
|
||||
SourceFiles/boxes/about_box.cpp
|
||||
SourceFiles/boxes/abstract_box.cpp
|
||||
SourceFiles/boxes/add_contact_box.cpp
|
||||
SourceFiles/boxes/autolock_box.cpp
|
||||
SourceFiles/boxes/background_box.cpp
|
||||
SourceFiles/boxes/calendar_box.cpp
|
||||
SourceFiles/boxes/change_phone_box.cpp
|
||||
SourceFiles/boxes/confirm_box.cpp
|
||||
SourceFiles/boxes/confirm_phone_box.cpp
|
||||
SourceFiles/boxes/connection_box.cpp
|
||||
SourceFiles/boxes/download_path_box.cpp
|
||||
SourceFiles/boxes/edit_color_box.cpp
|
||||
SourceFiles/boxes/edit_participant_box.cpp
|
||||
SourceFiles/boxes/edit_privacy_box.cpp
|
||||
SourceFiles/boxes/language_box.cpp
|
||||
SourceFiles/boxes/local_storage_box.cpp
|
||||
SourceFiles/boxes/mute_settings_box.cpp
|
||||
SourceFiles/boxes/notifications_box.cpp
|
||||
SourceFiles/boxes/passcode_box.cpp
|
||||
SourceFiles/boxes/peer_list_box.cpp
|
||||
SourceFiles/boxes/peer_list_controllers.cpp
|
||||
SourceFiles/boxes/photo_crop_box.cpp
|
||||
SourceFiles/boxes/rate_call_box.cpp
|
||||
SourceFiles/boxes/report_box.cpp
|
||||
SourceFiles/boxes/self_destruction_box.cpp
|
||||
SourceFiles/boxes/send_files_box.cpp
|
||||
SourceFiles/boxes/sessions_box.cpp
|
||||
SourceFiles/boxes/share_box.cpp
|
||||
SourceFiles/boxes/sticker_set_box.cpp
|
||||
SourceFiles/boxes/stickers_box.cpp
|
||||
SourceFiles/boxes/username_box.cpp
|
||||
|
||||
SourceFiles/calls/calls_box_controller.cpp
|
||||
SourceFiles/calls/calls_call.cpp
|
||||
SourceFiles/calls/calls_emoji_fingerprint.cpp
|
||||
SourceFiles/calls/calls_instance.cpp
|
||||
SourceFiles/calls/calls_panel.cpp
|
||||
SourceFiles/calls/calls_top_bar.cpp
|
||||
|
||||
SourceFiles/chat_helpers/bot_keyboard.cpp
|
||||
SourceFiles/chat_helpers/emoji_list_widget.cpp
|
||||
SourceFiles/chat_helpers/emoji_suggestions_widget.cpp
|
||||
SourceFiles/chat_helpers/field_autocomplete.cpp
|
||||
SourceFiles/chat_helpers/gifs_list_widget.cpp
|
||||
SourceFiles/chat_helpers/message_field.cpp
|
||||
SourceFiles/chat_helpers/stickers.cpp
|
||||
SourceFiles/chat_helpers/stickers_list_widget.cpp
|
||||
SourceFiles/chat_helpers/tabbed_panel.cpp
|
||||
SourceFiles/chat_helpers/tabbed_section.cpp
|
||||
SourceFiles/chat_helpers/tabbed_selector.cpp
|
||||
|
||||
SourceFiles/core/click_handler.cpp
|
||||
SourceFiles/core/click_handler_types.cpp
|
||||
SourceFiles/core/file_utilities.cpp
|
||||
SourceFiles/core/single_timer.cpp
|
||||
SourceFiles/core/utils.cpp
|
||||
|
||||
SourceFiles/data/data_abstract_structure.cpp
|
||||
SourceFiles/data/data_drafts.cpp
|
||||
|
||||
SourceFiles/dialogs/dialogs_indexed_list.cpp
|
||||
SourceFiles/dialogs/dialogs_inner_widget.cpp
|
||||
SourceFiles/dialogs/dialogs_layout.cpp
|
||||
SourceFiles/dialogs/dialogs_list.cpp
|
||||
SourceFiles/dialogs/dialogs_row.cpp
|
||||
SourceFiles/dialogs/dialogs_search_from_controllers.cpp
|
||||
SourceFiles/dialogs/dialogs_widget.cpp
|
||||
|
||||
SourceFiles/history/history.cpp
|
||||
SourceFiles/history/history_admin_log_filter.cpp
|
||||
SourceFiles/history/history_admin_log_inner.cpp
|
||||
SourceFiles/history/history_admin_log_item.cpp
|
||||
SourceFiles/history/history_admin_log_section.cpp
|
||||
SourceFiles/history/history_drag_area.cpp
|
||||
SourceFiles/history/history_inner_widget.cpp
|
||||
SourceFiles/history/history_item.cpp
|
||||
SourceFiles/history/history_location_manager.cpp
|
||||
SourceFiles/history/history_media_types.cpp
|
||||
SourceFiles/history/history_message.cpp
|
||||
SourceFiles/history/history_service.cpp
|
||||
SourceFiles/history/history_service_layout.cpp
|
||||
SourceFiles/history/history_widget.cpp
|
||||
|
||||
SourceFiles/inline_bots/inline_bot_layout_internal.cpp
|
||||
SourceFiles/inline_bots/inline_bot_layout_item.cpp
|
||||
SourceFiles/inline_bots/inline_bot_result.cpp
|
||||
SourceFiles/inline_bots/inline_bot_send_data.cpp
|
||||
SourceFiles/inline_bots/inline_results_widget.cpp
|
||||
|
||||
SourceFiles/intro/introcode.cpp
|
||||
SourceFiles/intro/introphone.cpp
|
||||
SourceFiles/intro/intropwdcheck.cpp
|
||||
SourceFiles/intro/introsignup.cpp
|
||||
SourceFiles/intro/introstart.cpp
|
||||
SourceFiles/intro/introwidget.cpp
|
||||
|
||||
SourceFiles/lang/lang_cloud_manager.cpp
|
||||
SourceFiles/lang/lang_file_parser.cpp
|
||||
SourceFiles/lang/lang_instance.cpp
|
||||
SourceFiles/lang/lang_keys.cpp
|
||||
SourceFiles/lang/lang_tag.cpp
|
||||
SourceFiles/lang/lang_translator.cpp
|
||||
|
||||
SourceFiles/media/player/media_player_button.cpp
|
||||
SourceFiles/media/player/media_player_cover.cpp
|
||||
SourceFiles/media/player/media_player_float.cpp
|
||||
SourceFiles/media/player/media_player_instance.cpp
|
||||
SourceFiles/media/player/media_player_list.cpp
|
||||
SourceFiles/media/player/media_player_panel.cpp
|
||||
SourceFiles/media/player/media_player_volume_controller.cpp
|
||||
SourceFiles/media/player/media_player_widget.cpp
|
||||
|
||||
SourceFiles/media/view/media_clip_controller.cpp
|
||||
SourceFiles/media/view/media_clip_playback.cpp
|
||||
SourceFiles/media/view/media_clip_volume_controller.cpp
|
||||
|
||||
SourceFiles/media/media_audio.cpp
|
||||
SourceFiles/media/media_audio_capture.cpp
|
||||
SourceFiles/media/media_audio_ffmpeg_loader.cpp
|
||||
SourceFiles/media/media_audio_loader.cpp
|
||||
SourceFiles/media/media_audio_loaders.cpp
|
||||
SourceFiles/media/media_audio_track.cpp
|
||||
SourceFiles/media/media_child_ffmpeg_loader.cpp
|
||||
SourceFiles/media/media_clip_ffmpeg.cpp
|
||||
SourceFiles/media/media_clip_implementation.cpp
|
||||
SourceFiles/media/media_clip_qtgif.cpp
|
||||
SourceFiles/media/media_clip_reader.cpp
|
||||
|
||||
SourceFiles/mtproto/auth_key.cpp
|
||||
SourceFiles/mtproto/config_loader.cpp
|
||||
SourceFiles/mtproto/connection.cpp
|
||||
SourceFiles/mtproto/connection_abstract.cpp
|
||||
SourceFiles/mtproto/connection_auto.cpp
|
||||
SourceFiles/mtproto/connection_http.cpp
|
||||
SourceFiles/mtproto/connection_tcp.cpp
|
||||
SourceFiles/mtproto/core_types.cpp
|
||||
SourceFiles/mtproto/dc_options.cpp
|
||||
SourceFiles/mtproto/dcenter.cpp
|
||||
SourceFiles/mtproto/facade.cpp
|
||||
SourceFiles/mtproto/mtp_instance.cpp
|
||||
SourceFiles/mtproto/rpc_sender.cpp
|
||||
SourceFiles/mtproto/rsa_public_key.cpp
|
||||
SourceFiles/mtproto/session.cpp
|
||||
SourceFiles/mtproto/special_config_request.cpp
|
||||
SourceFiles/mtproto/type_utils.cpp
|
||||
|
||||
SourceFiles/overview/overview_layout.cpp
|
||||
|
||||
SourceFiles/profile/profile_back_button.cpp
|
||||
SourceFiles/profile/profile_block_actions.cpp
|
||||
SourceFiles/profile/profile_block_channel_members.cpp
|
||||
SourceFiles/profile/profile_block_group_members.cpp
|
||||
SourceFiles/profile/profile_block_info.cpp
|
||||
SourceFiles/profile/profile_block_invite_link.cpp
|
||||
SourceFiles/profile/profile_block_peer_list.cpp
|
||||
SourceFiles/profile/profile_block_settings.cpp
|
||||
SourceFiles/profile/profile_block_shared_media.cpp
|
||||
SourceFiles/profile/profile_block_widget.cpp
|
||||
SourceFiles/profile/profile_channel_controllers.cpp
|
||||
SourceFiles/profile/profile_common_groups_section.cpp
|
||||
SourceFiles/profile/profile_cover.cpp
|
||||
SourceFiles/profile/profile_cover_drop_area.cpp
|
||||
SourceFiles/profile/profile_fixed_bar.cpp
|
||||
SourceFiles/profile/profile_inner_widget.cpp
|
||||
SourceFiles/profile/profile_section_memento.cpp
|
||||
SourceFiles/profile/profile_userpic_button.cpp
|
||||
SourceFiles/profile/profile_widget.cpp
|
||||
|
||||
SourceFiles/settings/settings_advanced_widget.cpp
|
||||
SourceFiles/settings/settings_background_widget.cpp
|
||||
SourceFiles/settings/settings_block_widget.cpp
|
||||
SourceFiles/settings/settings_chat_settings_widget.cpp
|
||||
SourceFiles/settings/settings_cover.cpp
|
||||
SourceFiles/settings/settings_fixed_bar.cpp
|
||||
SourceFiles/settings/settings_general_widget.cpp
|
||||
SourceFiles/settings/settings_info_widget.cpp
|
||||
SourceFiles/settings/settings_inner_widget.cpp
|
||||
SourceFiles/settings/settings_layer.cpp
|
||||
SourceFiles/settings/settings_notifications_widget.cpp
|
||||
SourceFiles/settings/settings_privacy_controllers.cpp
|
||||
SourceFiles/settings/settings_privacy_widget.cpp
|
||||
SourceFiles/settings/settings_scale_widget.cpp
|
||||
SourceFiles/settings/settings_widget.cpp
|
||||
|
||||
SourceFiles/storage/file_download.cpp
|
||||
SourceFiles/storage/file_upload.cpp
|
||||
SourceFiles/storage/localimageloader.cpp
|
||||
SourceFiles/storage/localstorage.cpp
|
||||
SourceFiles/storage/serialize_common.cpp
|
||||
SourceFiles/storage/serialize_document.cpp
|
||||
|
||||
SourceFiles/ui/effects/cross_animation.cpp
|
||||
SourceFiles/ui/effects/panel_animation.cpp
|
||||
SourceFiles/ui/effects/radial_animation.cpp
|
||||
SourceFiles/ui/effects/ripple_animation.cpp
|
||||
SourceFiles/ui/effects/round_checkbox.cpp
|
||||
SourceFiles/ui/effects/send_action_animations.cpp
|
||||
SourceFiles/ui/effects/slide_animation.cpp
|
||||
SourceFiles/ui/effects/widget_fade_wrap.cpp
|
||||
SourceFiles/ui/effects/widget_slide_wrap.cpp
|
||||
|
||||
SourceFiles/ui/style/style_core.cpp
|
||||
SourceFiles/ui/style/style_core_color.cpp
|
||||
SourceFiles/ui/style/style_core_font.cpp
|
||||
SourceFiles/ui/style/style_core_icon.cpp
|
||||
SourceFiles/ui/style/style_core_types.cpp
|
||||
|
||||
SourceFiles/ui/text/text.cpp
|
||||
SourceFiles/ui/text/text_block.cpp
|
||||
SourceFiles/ui/text/text_entity.cpp
|
||||
|
||||
SourceFiles/ui/toast/toast.cpp
|
||||
SourceFiles/ui/toast/toast_manager.cpp
|
||||
SourceFiles/ui/toast/toast_widget.cpp
|
||||
|
||||
SourceFiles/ui/widgets/buttons.cpp
|
||||
SourceFiles/ui/widgets/checkbox.cpp
|
||||
SourceFiles/ui/widgets/continuous_sliders.cpp
|
||||
SourceFiles/ui/widgets/discrete_sliders.cpp
|
||||
SourceFiles/ui/widgets/dropdown_menu.cpp
|
||||
SourceFiles/ui/widgets/inner_dropdown.cpp
|
||||
SourceFiles/ui/widgets/input_fields.cpp
|
||||
SourceFiles/ui/widgets/labels.cpp
|
||||
SourceFiles/ui/widgets/menu.cpp
|
||||
SourceFiles/ui/widgets/multi_select.cpp
|
||||
SourceFiles/ui/widgets/popup_menu.cpp
|
||||
SourceFiles/ui/widgets/scroll_area.cpp
|
||||
SourceFiles/ui/widgets/shadow.cpp
|
||||
SourceFiles/ui/widgets/tooltip.cpp
|
||||
|
||||
SourceFiles/ui/abstract_button.cpp
|
||||
SourceFiles/ui/animation.cpp
|
||||
SourceFiles/ui/countryinput.cpp
|
||||
SourceFiles/ui/emoji_config.cpp
|
||||
SourceFiles/ui/images.cpp
|
||||
SourceFiles/ui/special_buttons.cpp
|
||||
SourceFiles/ui/twidget.cpp
|
||||
|
||||
SourceFiles/window/themes/window_theme.cpp
|
||||
SourceFiles/window/themes/window_theme_editor.cpp
|
||||
SourceFiles/window/themes/window_theme_editor_block.cpp
|
||||
SourceFiles/window/themes/window_theme_preview.cpp
|
||||
SourceFiles/window/themes/window_theme_warning.cpp
|
||||
|
||||
SourceFiles/window/main_window.cpp
|
||||
SourceFiles/window/notifications_manager.cpp
|
||||
SourceFiles/window/notifications_manager_default.cpp
|
||||
SourceFiles/window/notifications_utilities.cpp
|
||||
SourceFiles/window/player_wrap_widget.cpp
|
||||
SourceFiles/window/section_widget.cpp
|
||||
SourceFiles/window/top_bar_widget.cpp
|
||||
SourceFiles/window/window_controller.cpp
|
||||
SourceFiles/window/window_main_menu.cpp
|
||||
SourceFiles/window/window_slide_animation.cpp
|
||||
|
||||
SourceFiles/apiwrap.cpp
|
||||
SourceFiles/app.cpp
|
||||
SourceFiles/application.cpp
|
||||
SourceFiles/auth_session.cpp
|
||||
SourceFiles/autoupdater.cpp
|
||||
SourceFiles/facades.cpp
|
||||
SourceFiles/layerwidget.cpp
|
||||
SourceFiles/layout.cpp
|
||||
SourceFiles/logs.cpp
|
||||
SourceFiles/main.cpp
|
||||
SourceFiles/mainwidget.cpp
|
||||
SourceFiles/mainwindow.cpp
|
||||
SourceFiles/mediaview.cpp
|
||||
SourceFiles/messenger.cpp
|
||||
SourceFiles/observer_peer.cpp
|
||||
SourceFiles/overviewwidget.cpp
|
||||
SourceFiles/passcodewidget.cpp
|
||||
SourceFiles/qt_functions.cpp
|
||||
SourceFiles/settings.cpp
|
||||
SourceFiles/shortcuts.cpp
|
||||
SourceFiles/structs.cpp
|
||||
)
|
||||
|
||||
set(PLAT_SRC)
|
||||
|
||||
if (APPLE)
|
||||
set(PLAT_SRC ${PLAT_SRC}
|
||||
SourceFiles/platform/mac/file_utilities_mac.mm
|
||||
SourceFiles/platform/mac/mac_utilities.mm
|
||||
SourceFiles/platform/mac/main_window_mac.mm
|
||||
SourceFiles/platform/mac/notifications_manager_mac.mm
|
||||
SourceFiles/platform/mac/specific_mac.mm
|
||||
SourceFiles/platform/mac/specific_mac_p.mm
|
||||
SourceFiles/platform/mac/window_title_mac.mm
|
||||
)
|
||||
set(tg_RESOURCES Resources/qrc/telegram_mac.qrc)
|
||||
endif()
|
||||
if (WIN32)
|
||||
set(PLAT_SRC ${PLAT_SRC}
|
||||
SourceFiles/platform/win/audio_win.cpp
|
||||
SourceFiles/platform/win/file_utilities_win.cpp
|
||||
SourceFiles/platform/win/main_window_win.cpp
|
||||
SourceFiles/platform/win/notifications_manager_win.cpp
|
||||
SourceFiles/platform/win/specific_win.cpp
|
||||
SourceFiles/platform/win/window_title_win.cpp
|
||||
SourceFiles/platform/win/windows_app_user_model_id.cpp
|
||||
SourceFiles/platform/win/windows_dlls.cpp
|
||||
SourceFiles/platform/win/windows_event_filter.cpp
|
||||
)
|
||||
set(tg_RESOURCES Resources/qrc/telegram_wnd.qrc)
|
||||
endif()
|
||||
if (WINRT)
|
||||
set(PLAT_SRC ${PLAT_SRC}
|
||||
SourceFiles/platform/winrt/main_window_winrt.cpp
|
||||
)
|
||||
endif()
|
||||
if (LINUX)
|
||||
set(PLAT_SRC ${PLAT_SRC}
|
||||
SourceFiles/platform/linux/file_utilities_linux.cpp
|
||||
SourceFiles/platform/linux/linux_desktop_environment.cpp
|
||||
SourceFiles/platform/linux/linux_gdk_helper.cpp
|
||||
SourceFiles/platform/linux/linux_libnotify.cpp
|
||||
SourceFiles/platform/linux/linux_libs.cpp
|
||||
SourceFiles/platform/linux/main_window_linux.cpp
|
||||
SourceFiles/platform/linux/notifications_manager_linux.cpp
|
||||
SourceFiles/platform/linux/specific_linux.cpp
|
||||
)
|
||||
set(tg_RESOURCES Resources/qrc/telegram_linux.qrc)
|
||||
endif()
|
||||
|
||||
list(APPEND tg_RESOURCES
|
||||
Resources/qrc/telegram.qrc
|
||||
Resources/qrc/telegram_sounds.qrc
|
||||
Resources/qrc/telegram_emoji.qrc
|
||||
Resources/qrc/telegram_emoji_large.qrc
|
||||
)
|
||||
|
||||
qt5_add_resources(tg_RESOURCES_RCC ${tg_RESOURCES})
|
||||
|
||||
set(THIRD_PARTY_SRC)
|
||||
|
||||
if (APPLE)
|
||||
list(APPEND THIRD_PARTY_SRC
|
||||
ThirdParty/SPMediaKeyTap/SPMediaKeyTap.m
|
||||
ThirdParty/SPMediaKeyTap/SPInvocationGrabbing/NSObject+SPInvocationGrabbing.m
|
||||
)
|
||||
include_directories(ThirdParty/SPMediaKeyTap)
|
||||
endif()
|
||||
|
||||
list(APPEND THIRD_PARTY_SRC
|
||||
ThirdParty/minizip/ioapi.c
|
||||
ThirdParty/minizip/zip.c
|
||||
ThirdParty/minizip/unzip.c
|
||||
|
||||
ThirdParty/emoji_suggestions/emoji_suggestions.cpp
|
||||
)
|
||||
include_directories(ThirdParty/minizip)
|
||||
|
||||
include_directories(ThirdParty/GSL/include ThirdParty/variant/include
|
||||
ThirdParty/emoji_suggestions ThirdParty/libtgvoip)
|
||||
|
||||
##======================
|
||||
## Telegram
|
||||
##======================
|
||||
|
||||
include_directories(SourceFiles SourceFiles/core)
|
||||
|
||||
include_directories(${OPENAL_INCLUDE_DIR} ${ZLIB_INCLUDE_DIRS}
|
||||
${LIBZIP_INCLUDE_DIR_ZIP} ${LIBZIP_INCLUDE_DIR_ZIPCONF}
|
||||
${OPENSSL_INCLUDE_DIR} ${LIBLZMA_INCLUDE_DIRS}
|
||||
${ICONV_INCLUDE_DIR} ${OPUS_INCLUDE_DIR}
|
||||
${FFMPEG_INCLUDE_DIRS})
|
||||
|
||||
add_subdirectory(ThirdParty/libtgvoip)
|
||||
|
||||
# Shut up for testbuilding, remove me
|
||||
include_directories(/usr/local/opt/openal-soft/include)
|
||||
# End remove me
|
||||
|
||||
if(NOT WIN32)
|
||||
add_definitions(-Wno-switch)
|
||||
endif()
|
||||
|
||||
if (WIN32)
|
||||
add_definitions(-D_CRT_SECURE_NO_WARNINGS -DWIN32 -D_WINDOWS -DUNICODE -DWIN64 -DWINAPI_FAMILY=WINAPI_FAMILY_DESKTOP_APP)
|
||||
list(APPEND APP_SRC Resources/winrc/Telegram.rc)
|
||||
endif()
|
||||
|
||||
add_definitions(-DTDESKTOP_DISABLE_CRASH_REPORTS)
|
||||
|
||||
if (APPLE)
|
||||
set(MACOSX_BUNDLE_ICON_FILE Icon.icns)
|
||||
|
||||
add_custom_command(
|
||||
COMMENT "Generating icon file"
|
||||
OUTPUT
|
||||
${CMAKE_CURRENT_BINARY_DIR}/${MACOSX_BUNDLE_ICON_FILE}
|
||||
COMMAND
|
||||
iconutil -c icns -o ${CMAKE_CURRENT_BINARY_DIR}/${MACOSX_BUNDLE_ICON_FILE} ${CMAKE_CURRENT_SOURCE_DIR}/Telegram/Images.xcassets/Icon.iconset/
|
||||
WORKING_DIRECTORY .
|
||||
DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/Telegram/Images.xcassets/Icon.iconset
|
||||
MAIN_DEPENDENCY ${CMAKE_CURRENT_SOURCE_DIR}/Telegram/Images.xcassets/Icon.iconset
|
||||
)
|
||||
add_custom_target(iconset_output
|
||||
DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${MACOSX_BUNDLE_ICON_FILE})
|
||||
|
||||
set_source_files_properties(${CMAKE_CURRENT_BINARY_DIR}/${MACOSX_BUNDLE_ICON_FILE}
|
||||
PROPERTIES
|
||||
MACOSX_PACKAGE_LOCATION Resources)
|
||||
set(APPLE_BUNDLE_SRC ${CMAKE_CURRENT_BINARY_DIR}/${MACOSX_BUNDLE_ICON_FILE})
|
||||
endif()
|
||||
|
||||
add_executable(Telegram WIN32 MACOSX_BUNDLE
|
||||
SourceFiles/stdafx.cpp
|
||||
${APP_SRC}
|
||||
${PLAT_SRC}
|
||||
${THIRD_PARTY_SRC}
|
||||
${tg_RESOURCES}
|
||||
${tg_RESOURCES_RCC}
|
||||
${APPLE_BUNDLE_SRC}
|
||||
)
|
||||
|
||||
# Disable a single annoying warning about c++17
|
||||
if(NOT WIN32)
|
||||
target_compile_options(Telegram PRIVATE -Wno-c++1z-extensions)
|
||||
endif()
|
||||
|
||||
# Enable C++14 support for msvc (@todo this should be done in cmake)
|
||||
if(WIN32)
|
||||
target_compile_options(Telegram PRIVATE /std:c++14)
|
||||
endif()
|
||||
|
||||
target_compile_definitions(Telegram PRIVATE ${FFMPEG_DEFINITIONS})
|
||||
|
||||
target_link_libraries(Telegram
|
||||
Qt5::Core
|
||||
Qt5::Widgets
|
||||
Qt5::Network
|
||||
Qt5::GuiPrivate
|
||||
tgvoip
|
||||
${OPENAL_LIBRARY}
|
||||
${FFMPEG_LIBRARIES}
|
||||
${ZLIB_LIBRARIES}
|
||||
${SWRESAMPLE_LIBRARIES}
|
||||
${SWSCALE_LIBRARIES}
|
||||
${OPENSSL_LIBRARIES}
|
||||
${OPUS_LIB}
|
||||
${CONAN_LIBS}
|
||||
) # crashpad::crashpad_client)
|
||||
|
||||
add_dependencies(Telegram boxes_styles_output)
|
||||
|
||||
if (APPLE)
|
||||
add_dependencies(Telegram iconset_output)
|
||||
|
||||
set_target_properties(Telegram
|
||||
PROPERTIES
|
||||
MACOSX_BUNDLE_INFO_PLIST ${CMAKE_CURRENT_SOURCE_DIR}/Telegram.plist
|
||||
)
|
||||
find_library(COREFOUNDATION_LIB CoreFoundation)
|
||||
find_library(COREAUDIO_LIB CoreAudio)
|
||||
find_library(AUDIOUNIT_LIB AudioUnit)
|
||||
find_library(AUDIOTOOLBOX_LIB AudioToolbox)
|
||||
find_library(COCOA_LIB Cocoa)
|
||||
find_library(CARBON_LIB Carbon)
|
||||
find_library(IOKIT_LIB IOKit)
|
||||
target_link_libraries(Telegram
|
||||
${COREFOUNDATION_LIB}
|
||||
${COCOA_LIB}
|
||||
${CARBON_LIB}
|
||||
${COREAUDIO_LIB}
|
||||
${AUDIOUNIT_LIB}
|
||||
${AUDIOTOOLBOX_LIB}
|
||||
${IOKIT_LIB}
|
||||
)
|
||||
endif()
|
||||
|
||||
if(WIN32)
|
||||
target_link_libraries(Telegram winmm imm32 ws2_32 kernel32 user32 gdi32 winspool comdlg32 advapi32 shell32 ole32 oleaut32 uuid odbc32 odbccp32 Shlwapi Iphlpapi Gdiplus Strmiids)
|
||||
endif()
|
||||
|
||||
set_target_properties(Telegram
|
||||
PROPERTIES
|
||||
COTIRE_CXX_PREFIX_HEADER_INIT SourceFiles/stdafx.h
|
||||
COTIRE_ADD_UNITY_BUILD FALSE
|
||||
)
|
||||
cotire(Telegram)
|
||||
|
||||
##======================
|
||||
|
||||
# if (APPLE)
|
||||
# set(UPD_SRC SourceFiles/_other/updater_osx.m)
|
||||
# endif()
|
||||
# if (WIN32)
|
||||
# set(UPD_SRC SourceFiles/_other/updater.cpp)
|
||||
# endif()
|
||||
# if (LINUX)
|
||||
# set(UPD_SRC SourceFiles/_other/updater_linux.cpp)
|
||||
# endif()
|
||||
|
||||
##======================
|
||||
## Updater
|
||||
##======================
|
||||
|
||||
#add_executable(Updater ${UPD_SRC})
|
||||
#cotire(Updater)
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
add_subdirectory(common)
|
||||
add_subdirectory(emoji)
|
||||
add_subdirectory(lang)
|
||||
add_subdirectory(numbers)
|
||||
add_subdirectory(style)
|
|
@ -0,0 +1,8 @@
|
|||
add_library(codegen_common STATIC
|
||||
basic_tokenized_file.cpp
|
||||
checked_utf8_string.cpp
|
||||
clean_file.cpp
|
||||
cpp_file.cpp
|
||||
logging.cpp
|
||||
)
|
||||
qt5_use_modules(codegen_common Core)
|
|
@ -0,0 +1,9 @@
|
|||
add_executable(codegen_emoji
|
||||
data.cpp
|
||||
generator.cpp
|
||||
main.cpp
|
||||
options.cpp
|
||||
replaces.cpp
|
||||
)
|
||||
target_link_libraries(codegen_emoji codegen_common Qt5::Core Qt5::Gui)
|
||||
qt5_use_modules(codegen_emoji Core)
|
|
@ -0,0 +1,9 @@
|
|||
add_executable(codegen_lang
|
||||
generator.cpp
|
||||
main.cpp
|
||||
options.cpp
|
||||
parsed_file.cpp
|
||||
processor.cpp
|
||||
)
|
||||
target_link_libraries(codegen_lang codegen_common Qt5::Core Qt5::Gui)
|
||||
qt5_use_modules(codegen_lang Core Gui)
|
|
@ -0,0 +1,9 @@
|
|||
add_executable(codegen_numbers
|
||||
generator.cpp
|
||||
main.cpp
|
||||
options.cpp
|
||||
parsed_file.cpp
|
||||
processor.cpp
|
||||
)
|
||||
target_link_libraries(codegen_numbers codegen_common Qt5::Core)
|
||||
qt5_use_modules(codegen_numbers Core)
|
|
@ -0,0 +1,11 @@
|
|||
add_executable(codegen_style
|
||||
generator.cpp
|
||||
main.cpp
|
||||
module.cpp
|
||||
options.cpp
|
||||
parsed_file.cpp
|
||||
processor.cpp
|
||||
structure_types.cpp
|
||||
)
|
||||
target_link_libraries(codegen_style codegen_common Qt5::Core Qt5::Gui)
|
||||
qt5_use_modules(codegen_style Core Gui)
|
|
@ -0,0 +1,8 @@
|
|||
[requires]
|
||||
#openal-soft/1.17.2@hilborn/stable
|
||||
OpenSSL/1.0.2m@conan/stable
|
||||
Catch/2.0.1@bincrafters/stable
|
||||
gsl_microsoft/20171020@bincrafters/stable
|
||||
|
||||
[generators]
|
||||
cmake
|
|
@ -0,0 +1,201 @@
|
|||
`cmake -G Ninja .. -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl -DCMAKE_PREFIX_PATH=/usr/local/opt/qt5`
|
||||
|
||||
|
||||
##Build instructions for GYP/CMake under Ubuntu 12.04
|
||||
|
||||
###Prepare
|
||||
|
||||
* Install git by command **sudo apt-get install git** in Terminal
|
||||
* Install g++ by command **sudo apt-get install g++** in Terminal
|
||||
|
||||
You need to install g++ version 4.9 manually by such commands
|
||||
|
||||
* sudo add-apt-repository ppa:ubuntu-toolchain-r/test
|
||||
* sudo apt-get update
|
||||
* sudo apt-get install gcc-4.9 g++-4.9
|
||||
* sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.9 21
|
||||
* sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.9 21
|
||||
|
||||
###Prepare folder
|
||||
|
||||
Choose a folder for the future build, for example **/home/user/TBuild** There you will have two folders, **Libraries** for third-party libs and **tdesktop** (or **tdesktop-master**) for the app.
|
||||
|
||||
###Clone source code
|
||||
|
||||
By git – in Terminal go to **/home/user/TBuild** and run
|
||||
|
||||
git clone https://github.com/telegramdesktop/tdesktop.git
|
||||
|
||||
###Prepare libraries
|
||||
|
||||
Install dev libraries
|
||||
|
||||
sudo apt-get install libexif-dev liblzma-dev libz-dev libssl-dev libappindicator-dev libunity-dev libicu-dev
|
||||
|
||||
####zlib 1.2.8
|
||||
|
||||
http://www.zlib.net/ > Download [**zlib source code, version 1.2.8, zipfile format**](http://zlib.net/zlib128.zip)
|
||||
|
||||
Extract to **/home/user/TBuild/Libraries**
|
||||
|
||||
#####Building library
|
||||
|
||||
In Terminal go to **/home/user/TBuild/Libraries/zlib-1.2.8** and run:
|
||||
|
||||
./configure
|
||||
make
|
||||
sudo make install
|
||||
|
||||
Install audio libraries
|
||||
|
||||
####Opus codec 1.1
|
||||
|
||||
Download [opus-1.1 sources](http://downloads.xiph.org/releases/opus/opus-1.1.tar.gz) from http://www.opus-codec.org/downloads, extract to **/home/user/TBuild/Libraries**, go to **/home/user/TBuild/Libraries/opus-1.1** and run
|
||||
|
||||
./configure
|
||||
make
|
||||
sudo make install
|
||||
|
||||
####FFmpeg
|
||||
|
||||
In Terminal go to **/home/user/TBuild/Libraries** and run
|
||||
|
||||
git clone git://anongit.freedesktop.org/git/libva
|
||||
cd libva
|
||||
./autogen.sh --enable-static
|
||||
make
|
||||
sudo make install
|
||||
cd ..
|
||||
|
||||
git clone git://anongit.freedesktop.org/vdpau/libvdpau
|
||||
cd libvdpau
|
||||
./autogen.sh --enable-static
|
||||
make
|
||||
sudo make install
|
||||
cd ..
|
||||
|
||||
git clone https://github.com/FFmpeg/FFmpeg.git ffmpeg
|
||||
cd ffmpeg
|
||||
git checkout release/3.2
|
||||
|
||||
sudo apt-get update
|
||||
sudo apt-get -y --force-yes install autoconf automake build-essential libass-dev libfreetype6-dev libgpac-dev libsdl1.2-dev libtheora-dev libtool libva-dev libvdpau-dev libvorbis-dev libxcb1-dev libxcb-shm0-dev libxcb-xfixes0-dev pkg-config texi2html zlib1g-dev
|
||||
sudo apt-get install yasm
|
||||
|
||||
./configure --prefix=/usr/local --disable-programs --disable-doc --disable-everything --enable-protocol=file --enable-libopus --enable-decoder=aac --enable-decoder=aac_latm --enable-decoder=aasc --enable-decoder=flac --enable-decoder=gif --enable-decoder=h264 --enable-decoder=h264_vdpau --enable-decoder=mp1 --enable-decoder=mp1float --enable-decoder=mp2 --enable-decoder=mp2float --enable-decoder=mp3 --enable-decoder=mp3adu --enable-decoder=mp3adufloat --enable-decoder=mp3float --enable-decoder=mp3on4 --enable-decoder=mp3on4float --enable-decoder=mpeg4 --enable-decoder=mpeg4_vdpau --enable-decoder=msmpeg4v2 --enable-decoder=msmpeg4v3 --enable-decoder=opus --enable-decoder=vorbis --enable-decoder=wavpack --enable-decoder=wmalossless --enable-decoder=wmapro --enable-decoder=wmav1 --enable-decoder=wmav2 --enable-decoder=wmavoice --enable-encoder=libopus --enable-hwaccel=h264_vaapi --enable-hwaccel=h264_vdpau --enable-hwaccel=mpeg4_vaapi --enable-hwaccel=mpeg4_vdpau --enable-parser=aac --enable-parser=aac_latm --enable-parser=flac --enable-parser=h264 --enable-parser=mpeg4video --enable-parser=mpegaudio --enable-parser=opus --enable-parser=vorbis --enable-demuxer=aac --enable-demuxer=flac --enable-demuxer=gif --enable-demuxer=h264 --enable-demuxer=mov --enable-demuxer=mp3 --enable-demuxer=ogg --enable-demuxer=wav --enable-muxer=ogg --enable-muxer=opus
|
||||
|
||||
make
|
||||
sudo make install
|
||||
|
||||
####PortAudio 19
|
||||
|
||||
[Download portaudio sources](http://www.portaudio.com/archives/pa_stable_v19_20140130.tgz) from **http://www.portaudio.com/download.html**, extract to **/home/user/TBuild/Libraries**, go to **/home/user/TBuild/Libraries/portaudio** and run
|
||||
|
||||
./configure
|
||||
make
|
||||
sudo make install
|
||||
|
||||
####OpenAL Soft
|
||||
|
||||
In Terminal go to **/home/user/TBuild/Libraries** and run
|
||||
|
||||
git clone git://repo.or.cz/openal-soft.git
|
||||
|
||||
then go to **/home/user/TBuild/Libraries/openal-soft/build** and run
|
||||
|
||||
sudo apt-get install cmake
|
||||
cmake -D LIBTYPE:STRING=STATIC ..
|
||||
make
|
||||
sudo make install
|
||||
|
||||
####OpenSSL
|
||||
|
||||
In Terminal go to **/home/user/TBuild/Libraries** and run
|
||||
|
||||
git clone https://github.com/openssl/openssl
|
||||
cd openssl
|
||||
git checkout OpenSSL_1_0_1-stable
|
||||
./config
|
||||
make
|
||||
sudo make install
|
||||
|
||||
####libxkbcommon (required for Fcitx Qt plugin)
|
||||
|
||||
In Terminal go to **/home/user/TBuild/Libraries** and run
|
||||
|
||||
sudo apt-get install xutils-dev bison python-xcbgen
|
||||
git clone https://github.com/xkbcommon/libxkbcommon.git
|
||||
cd libxkbcommon
|
||||
./autogen.sh --disable-x11
|
||||
make
|
||||
sudo make install
|
||||
|
||||
####Qt 5.6.2, slightly patched
|
||||
|
||||
In Terminal go to **/home/user/TBuild/Libraries** and run
|
||||
|
||||
git clone git://code.qt.io/qt/qt5.git qt5_6_2
|
||||
cd qt5_6_2
|
||||
git checkout 5.6
|
||||
perl init-repository --module-subset=qtbase,qtimageformats
|
||||
git checkout v5.6.2
|
||||
cd qtimageformats && git checkout v5.6.2 && cd ..
|
||||
cd qtbase && git checkout v5.6.2 && cd ..
|
||||
|
||||
#####Apply the patch
|
||||
|
||||
cd qtbase && git apply ../../../tdesktop/Telegram/Patches/qtbase_5_6_2.diff && cd ..
|
||||
|
||||
#####Building library
|
||||
|
||||
Install some packages for Qt (see **/home/user/TBuild/Libraries/qt5_6_2/qtbase/src/plugins/platforms/xcb/README**)
|
||||
|
||||
sudo apt-get install libxcb1-dev libxcb-image0-dev libxcb-keysyms1-dev libxcb-icccm4-dev libxcb-render-util0-dev libxcb-util0-dev libxrender-dev libasound-dev libpulse-dev libxcb-sync0-dev libxcb-xfixes0-dev libxcb-randr0-dev libx11-xcb-dev libffi-dev
|
||||
|
||||
In Terminal go to **/home/user/TBuild/Libraries/qt5_6_2** and there run
|
||||
|
||||
./configure -prefix "/usr/local/tdesktop/Qt-5.6.2" -release -force-debug-info -opensource -confirm-license -qt-zlib -qt-libpng -qt-libjpeg -qt-freetype -qt-harfbuzz -qt-pcre -qt-xcb -qt-xkbcommon-x11 -no-opengl -no-gtkstyle -static -openssl-linked -nomake examples -nomake tests
|
||||
make -j4
|
||||
sudo make install
|
||||
|
||||
building (**make** command) will take really long time.
|
||||
|
||||
####Google Breakpad
|
||||
|
||||
In Terminal go to **/home/user/TBuild/Libraries** and run
|
||||
|
||||
git clone https://chromium.googlesource.com/breakpad/breakpad
|
||||
git clone https://chromium.googlesource.com/linux-syscall-support breakpad/src/third_party/lss
|
||||
cd breakpad
|
||||
./configure --prefix=$PWD
|
||||
make
|
||||
make install
|
||||
|
||||
####GYP and CMake
|
||||
|
||||
In Terminal go to **/home/user/TBuild/Libraries** and run
|
||||
|
||||
git clone https://chromium.googlesource.com/external/gyp
|
||||
wget https://cmake.org/files/v3.6/cmake-3.6.2.tar.gz
|
||||
tar -xf cmake-3.6.2.tar.gz
|
||||
cd gyp
|
||||
git apply ../../tdesktop/Telegram/Patches/gyp.diff
|
||||
cd ../cmake-3.6.2
|
||||
./configure
|
||||
make
|
||||
|
||||
###Building Telegram Desktop
|
||||
|
||||
In Terminal go to **/home/user/TBuild/tdesktop/Telegram** and run
|
||||
|
||||
gyp/refresh.sh
|
||||
|
||||
To make Debug version go to **/home/user/TBuild/tdesktop/out/Debug** and run
|
||||
|
||||
make
|
||||
|
||||
To make Release version go to **/home/user/TBuild/tdesktop/out/Release** and run
|
||||
|
||||
make
|
||||
|
||||
You can debug your builds from Qt Creator, just open **CMakeLists.txt** from **/home/user/TBuild/tdesktop/out/Debug** and start debug.
|
Loading…
Reference in New Issue