init
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
This commit is contained in:
155
Telegram/ThirdParty/range-v3/example/BUCK
vendored
Normal file
155
Telegram/ThirdParty/range-v3/example/BUCK
vendored
Normal file
@@ -0,0 +1,155 @@
|
||||
cxx_binary(
|
||||
name = 'comprehensions',
|
||||
srcs = [
|
||||
'comprehensions.cpp',
|
||||
],
|
||||
deps = [
|
||||
'//:range-v3',
|
||||
],
|
||||
compiler_flags = [
|
||||
'-std=c++14',
|
||||
],
|
||||
)
|
||||
|
||||
cxx_binary(
|
||||
name = 'count_if',
|
||||
srcs = [
|
||||
'count_if.cpp',
|
||||
],
|
||||
deps = [
|
||||
'//:range-v3',
|
||||
],
|
||||
compiler_flags = [
|
||||
'-std=c++14',
|
||||
],
|
||||
)
|
||||
|
||||
cxx_binary(
|
||||
name = 'count',
|
||||
srcs = [
|
||||
'count.cpp',
|
||||
],
|
||||
deps = [
|
||||
'//:range-v3',
|
||||
],
|
||||
compiler_flags = [
|
||||
'-std=c++14',
|
||||
],
|
||||
)
|
||||
|
||||
cxx_binary(
|
||||
name = 'find',
|
||||
srcs = [
|
||||
'find.cpp',
|
||||
],
|
||||
deps = [
|
||||
'//:range-v3',
|
||||
],
|
||||
compiler_flags = [
|
||||
'-std=c++14',
|
||||
],
|
||||
)
|
||||
|
||||
cxx_binary(
|
||||
name = 'for_each_assoc',
|
||||
srcs = [
|
||||
'for_each_assoc.cpp',
|
||||
],
|
||||
deps = [
|
||||
'//:range-v3',
|
||||
],
|
||||
compiler_flags = [
|
||||
'-std=c++14',
|
||||
],
|
||||
)
|
||||
|
||||
cxx_binary(
|
||||
name = 'for_each_sequence',
|
||||
srcs = [
|
||||
'for_each_sequence.cpp',
|
||||
],
|
||||
deps = [
|
||||
'//:range-v3',
|
||||
],
|
||||
compiler_flags = [
|
||||
'-std=c++14',
|
||||
],
|
||||
)
|
||||
|
||||
cxx_binary(
|
||||
name = 'hello',
|
||||
srcs = [
|
||||
'hello.cpp',
|
||||
],
|
||||
deps = [
|
||||
'//:range-v3',
|
||||
],
|
||||
compiler_flags = [
|
||||
'-std=c++14',
|
||||
],
|
||||
)
|
||||
|
||||
cxx_binary(
|
||||
name = 'is_sorted',
|
||||
srcs = [
|
||||
'is_sorted.cpp',
|
||||
],
|
||||
deps = [
|
||||
'//:range-v3',
|
||||
],
|
||||
compiler_flags = [
|
||||
'-std=c++14',
|
||||
],
|
||||
)
|
||||
|
||||
cxx_binary(
|
||||
name = 'filter_transform',
|
||||
srcs = [
|
||||
'filter_transform.cpp',
|
||||
],
|
||||
deps = [
|
||||
'//:range-v3',
|
||||
],
|
||||
compiler_flags = [
|
||||
'-std=c++14',
|
||||
],
|
||||
)
|
||||
|
||||
cxx_binary(
|
||||
name = 'accumulate_ints',
|
||||
srcs = [
|
||||
'accumulate_ints.cpp',
|
||||
],
|
||||
deps = [
|
||||
'//:range-v3',
|
||||
],
|
||||
compiler_flags = [
|
||||
'-std=c++14',
|
||||
],
|
||||
)
|
||||
|
||||
cxx_binary(
|
||||
name = 'comprehension_conversion',
|
||||
srcs = [
|
||||
'comprehension_conversion.cpp',
|
||||
],
|
||||
deps = [
|
||||
'//:range-v3',
|
||||
],
|
||||
compiler_flags = [
|
||||
'-std=c++14',
|
||||
],
|
||||
)
|
||||
|
||||
cxx_binary(
|
||||
name = 'sort_unique',
|
||||
srcs = [
|
||||
'sort_unique.cpp',
|
||||
],
|
||||
deps = [
|
||||
'//:range-v3',
|
||||
],
|
||||
compiler_flags = [
|
||||
'-std=c++14',
|
||||
],
|
||||
)
|
||||
Reference in New Issue
Block a user