tdesktop/Telegram/gyp/linux_glibc_wraps.gyp

28 lines
756 B
Text
Raw Normal View History

# This file is part of Telegram Desktop,
# the official desktop application for the Telegram messaging service.
#
# For license and copyright information please follow this link:
# https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
{
'includes': [
2019-09-16 14:52:19 +00:00
'common/common.gypi',
],
'targets': [{
'target_name': 'linux_glibc_wraps',
'type': 'static_library',
'sources': [
'../SourceFiles/platform/linux/linux_glibc_wraps.c',
],
'conditions': [[ '"<!(uname -m)" == "x86_64" or "<!(uname -m)" == "aarch64"', {
'sources': [
'../SourceFiles/platform/linux/linux_glibc_wraps_64.c',
],
}, {
'sources': [
'../SourceFiles/platform/linux/linux_glibc_wraps_32.c',
],
}]],
}],
}