Jlm
jhls.cpp
Go to the documentation of this file.
1 /*
2  * Copyright 2022 Magnus Sjalander <work@sjalander.com>
3  * See COPYING for terms of redistribution.
4  */
5 
8 
9 int
10 main(int argc, char ** argv)
11 {
12  using namespace jlm::tooling;
13 
14  auto & commandLineOptions = JhlsCommandLineParser::Parse(argc, argv);
15 
16  auto commandGraph = JhlsCommandGraphGenerator::Generate(commandLineOptions);
17  commandGraph->Run();
18 
19  return 0;
20 }
static std::unique_ptr< CommandGraph > Generate(const JhlsCommandLineOptions &commandLineOptions)
static const JhlsCommandLineOptions & Parse(int argc, const char *const *arv)
int main(int argc, char **argv)
Definition: jhls.cpp:10