From c608229981339f2dd71b7df4618e3ef9e487fca5 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Mon, 18 Sep 2023 11:48:24 -0400 Subject: [PATCH] + FILES (map out directory layout) --- FILES | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 FILES diff --git a/FILES b/FILES new file mode 100644 index 00000000..68a84654 --- /dev/null +++ b/FILES @@ -0,0 +1,23 @@ +directory layout + ++- README.md markdown README, for github ++- img image files, used in docs +| +- ex1.png +| +- ex2.png +| +- ex3.png +| \- ex4.png ++- LICENSE software license ++- CMakeLists.txt toplevel cmake config ++- cmake +| \- nestlog.cmake cmake support files ++- compile_commands.json symlink to record of compiler commands; for LSP support ++- include to install, copy contents of this directory to permanent location +| \- indentlog +| +- scope.hpp +| ... +\- example + +- CMakeLists.txt cmake config + +- ex1 + | +- CMakeLists.txt ex1 cmake config + | \- ex1.cpp example .cpp exercising indentlog + ...