-
-
Save kennethho/9224821 to your computer and use it in GitHub Desktop.
Revisions
-
kennethho revised this gist
Feb 26, 2014 . 1 changed file with 24 additions and 17 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -8,22 +8,29 @@ thor │ │ └── 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 -
kennethho revised this gist
Feb 26, 2014 . 1 changed file with 8 additions and 7 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,22 +3,23 @@ thor │ ├── bar │ └── foo ├── include │ └── thor │ ├── lib-1 │ │ └── hdr-1.h // names in thor::lib-1 │ └── lib-2 │ └── hdr-2.h // names in thor::lib-2 ├── src │ ├── lib-1 │ │ ├── src │ │ │ └── src-1.cpp │ │ └── test │ │ └── test.cpp │ ├── lib-2 │ │ ├── src │ │ │ └── src-2.cpp │ │ └── test │ │ └── test.cpp │ └── bin-3 │ ├── src │ │ └── src-3.cpp │ └── test -
evanzillians revised this gist
Feb 26, 2014 . 1 changed file with 25 additions and 22 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,25 +1,28 @@ thor ├── contrib │ ├── bar │ └── foo ├── include │ ├── dir-1 │ │ └── hdr-1.h │ └── dir-2 │ └── hdr-2.h ├── src │ ├── target-1 │ │ ├── src │ │ │ └── src-1.cpp │ │ └── test │ │ └── test.cpp │ ├── target-2 │ │ ├── src │ │ │ └── src-2.cpp │ │ └── test │ │ └── test.cpp │ └── target-3 │ ├── src │ │ └── src-3.cpp │ └── test │ └── test.cpp └── test └── complicated └── test.cpp -
evanzillians created this gist
Feb 26, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,25 @@ thor ├── contrib │ ├── bar │ └── foo ├── include │ ├── dir-1 │ │ └── hdr-1.h │ └── dir-2 │ └── hdr-2.h └── src ├── target-1 │ ├── src │ │ └── src-1.cpp │ └── test │ └── test.cpp ├── target-2 │ ├── src │ │ └── src-2.cpp │ └── test │ └── test.cpp └── target-3 ├── src │ └── src-3.cpp └── test └── test.cpp