summaryrefslogtreecommitdiff
path: root/src/buildtool/system/TARGETS
blob: 11c2bd471d922574be2eb1221d1f431d364babe1 (plain)
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
{ "system":
  { "type": ["@", "rules", "CC", "library"]
  , "arguments_config": ["VALGRIND_BUILD"]
  , "name": ["system"]
  , "hdrs": ["system.hpp"]
  , "srcs": ["system.cpp"]
  , "private-defines":
    { "type": "if"
    , "cond": {"type": "var", "name": "VALGRIND_BUILD"}
    , "then": ["VALGRIND_BUILD"]
    }
  , "deps": [["src/utils/cpp", "concepts"]]
  , "stage": ["src", "buildtool", "system"]
  }
, "system_command":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["system_command"]
  , "hdrs": ["system_command.hpp"]
  , "deps":
    [ "system"
    , ["src/buildtool/file_system", "file_system_manager"]
    , ["src/buildtool/logging", "logging"]
    , ["@", "gsl-lite", "", "gsl-lite"]
    ]
  , "stage": ["src", "buildtool", "system"]
  }
}