@@ -355,37 +355,37 @@ class Operations {
355
355
std::cout << " Source directory is assumed to be the current one if unspecified\n " ;
356
356
std::cout << " \n " ;
357
357
std::cout << " Commands:\n " ;
358
- std::cout << " --help : Produce this help text\n " ;
358
+ std::cout << " --help : Produce this help text\n " ;
359
359
std::cout << " \n " ;
360
360
std::cout << " Extracting graphs:\n " ;
361
361
std::cout << " --graph <output> : Graph of all components with dependencies\n " ;
362
362
std::cout << " --graph-cycles <output> : Graph of components with cyclic dependencies on other components\n " ;
363
363
std::cout << " --graph-target <target> <output> : Graph for all dependencies of a specific target\n " ;
364
364
std::cout << " \n " ;
365
365
std::cout << " Getting information:\n " ;
366
- std::cout << " --stats : Info about code base size, complexity and cyclic dependency count\n " ;
367
- std::cout << " --cycles <targetname> : Find all possible paths from this target back to itself\n " ;
368
- std::cout << " --shortest : Determine shortest path between components and its reason\n " ;
369
- std::cout << " --outliers : Finds all components and files that match a criterium for being out of the ordinary\n " ;
370
- std::cout << " - libraries that are not used\n " ;
371
- std::cout << " - components that use a lot of other components\n " ;
372
- std::cout << " - components with dependencies towards executables\n " ;
373
- std::cout << " - components with less than 200 LoC\n " ;
374
- std::cout << " - components with more than 20 kLoC\n " ;
375
- std::cout << " - components that are part of a cycle\n " ;
376
- std::cout << " - files that are more than 2000 LoC\n " ;
377
- std::cout << " - files that are not compiled and never included\n " ;
366
+ std::cout << " --stats : Info about code base size, complexity and cyclic dependency count\n " ;
367
+ std::cout << " --cycles <targetname> : Find all possible paths from this target back to itself\n " ;
368
+ std::cout << " --shortest : Determine shortest path between components and its reason\n " ;
369
+ std::cout << " --outliers : Finds all components and files that match a criterium for being out of the ordinary\n " ;
370
+ std::cout << " - libraries that are not used\n " ;
371
+ std::cout << " - components that use a lot of other components\n " ;
372
+ std::cout << " - components with dependencies towards executables\n " ;
373
+ std::cout << " - components with less than 200 LoC\n " ;
374
+ std::cout << " - components with more than 20 kLoC\n " ;
375
+ std::cout << " - components that are part of a cycle\n " ;
376
+ std::cout << " - files that are more than 2000 LoC\n " ;
377
+ std::cout << " - files that are not compiled and never included\n " ;
378
378
std::cout << " \n " ;
379
379
std::cout << " Target information:\n " ;
380
- std::cout << " --info : Show all information on a given specific target\n " ;
381
- std::cout << " --usedby : Find all references to a specific header file\n " ;
382
- std::cout << " --inout : Find all incoming and outgoing links for a target\n " ;
383
- std::cout << " --ambiguous : Find all include statements that could refer to more than one header\n " ;
380
+ std::cout << " --info : Show all information on a given specific target\n " ;
381
+ std::cout << " --usedby : Find all references to a specific header file\n " ;
382
+ std::cout << " --inout : Find all incoming and outgoing links for a target\n " ;
383
+ std::cout << " --ambiguous : Find all include statements that could refer to more than one header\n " ;
384
384
std::cout << " \n " ;
385
385
std::cout << " Automatic CMakeLists.txt generation:\n " ;
386
386
std::cout << " Note: These commands only have any effect on CMakeLists.txt marked with \" " << Configuration::Get ().regenTag << " \"\n " ;
387
- std::cout << " --regen : Re-generate all marked CMakeLists.txt with the component information derived.\n " ;
388
- std::cout << " --dryregen : Verify which CMakeLists would be regenerated if you were to run --regen now.\n " ;
387
+ std::cout << " --regen : Re-generate all marked CMakeLists.txt with the component information derived.\n " ;
388
+ std::cout << " --dryregen : Verify which CMakeLists would be regenerated if you were to run --regen now.\n " ;
389
389
}
390
390
enum LoadStatus {
391
391
Unloaded,
0 commit comments