Skip to content

Instantly share code, notes, and snippets.

@kennethho
Forked from evanzillians/draft.txt
Last active August 29, 2015 13:56
Show Gist options
  • Save kennethho/9224821 to your computer and use it in GitHub Desktop.
Save kennethho/9224821 to your computer and use it in GitHub Desktop.
thor
├── contrib
│   ├── bar
│   └── foo
├── include
│   └── thor
│   ├── lib-1
│    │   └── hdr-1.h // names in thor::lib-1
│   └── lib-2
│   └── hdr-2.h // names in thor::lib-2
├── lib
│   ├── lib-1
│   │   └── src-1.cpp
│   └── lib-2
│      └── src
│         └── src-2.cpp
├── tools // or drivers?
│ ├── tsc
│ │ └── main.cpp
│ ├── tsc-compile
│ │ └── main.cpp
│ └── tsc-link
│ └── main.cpp
└── test
├── complicated
│ └── test.cpp
├── lib-1
   │ └── test.cpp
├── lib-2
   │ └── test.cpp
├── tsc
   │ └── test.cpp
├── tsc-compile
   │ └── test.cpp
└── tsc-link
   └── test.cpp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment