File: BUCK

package info (click to toggle)
libargs 6.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,212 kB
  • sloc: cpp: 15,120; makefile: 56; sh: 19; python: 12
file content (29 lines) | stat: -rw-r--r-- 372 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
cxx_binary(
  name = 'multiple-inclusion-1', 
  srcs = [
    'multiple_inclusion_1.cxx', 
  ], 
  deps = [
    '//:args', 
  ], 
)

cxx_binary(
  name = 'multiple-inclusion-2', 
  srcs = [
    'multiple_inclusion_2.cxx', 
  ], 
  deps = [
    '//:args', 
  ], 
)

cxx_binary(
  name = 'windows-h', 
  srcs = [
    'windows_h.cxx', 
  ], 
  deps = [
    '//:args', 
  ], 
)