summaryrefslogtreecommitdiff
path: root/src/buildtool/system/TARGETS
blob: 72797bbb5c9ae7df4891640ba8457ccd25321c01 (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
28
{ "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"
    , ["@", "gsl", "", "gsl"]
    , ["src/buildtool/file_system", "file_system_manager"]
    , ["src/buildtool/logging", "log_level"]
    , ["src/buildtool/logging", "logging"]
    ]
  , "stage": ["src", "buildtool", "system"]
  }
}