Move and rename all files

This commit moves around most files. The new directory structure is as
follows:

* `lib/$LIBRARY/`: contains a library, i.e., a set of `.cpp` files used
  by multiple libraries/tools.
* `include/revng/$LIBRARY/`: contains the public headers associated to
  the library in `lib/$LIBRARY/`.
* `tools/$TOOL/`: directory where all the `.cpp` files (and private
  headers) for a tool reside. Currently we have two tools: `revamb` and
  `revamb-dump`.

On top of this, all file names are now in camel case.
This commit is contained in:
Alessandro Di Federico
2018-09-25 15:48:40 +02:00
parent f061c6bad2
commit 076aeac7f3
122 changed files with 508 additions and 406 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ bool init_unit_test();
#include <boost/test/unit_test.hpp>
// Local includes
#include "intraprocedural.h"
#include "Intraprocedural.h"
using namespace StackAnalysis;