mirror of
https://git.freebsd.org/ports.git
synced 2025-06-09 14:50:31 -04:00
PR: 224193 Submitted by: Henry Hu <henry.hu.sh@gmail.com> Approved by: adamw (mentor) Differential Revision: https://reviews.freebsd.org/D13434
14 lines
600 B
CMake
14 lines
600 B
CMake
# ------------- debian/CMakeLists.inj begin -------------
|
|
# The text will be putted into the appropriate CMakeLists by debian/rules script
|
|
|
|
# Avoid rpath compiler parameter
|
|
set_target_properties(Telegram PROPERTIES SKIP_BUILD_RPATH TRUE)
|
|
|
|
# This makes up for patch of gyp utility, supporting precompiled headers. If
|
|
# Telegram/Patches/gyp.diff file will be changed in future, please check these
|
|
# lines.
|
|
include(../../Telegram/gyp/PrecompiledHeader.cmake)
|
|
add_precompiled_header(Telegram ../../Telegram/SourceFiles/stdafx.h)
|
|
|
|
# vim: ft=cmake
|
|
# -------------- debian/CMakeLists.inj end --------------
|