foo
This commit is contained in:
commit
3df042f464
5 changed files with 11 additions and 0 deletions
1
build.sh
Normal file
1
build.sh
Normal file
|
|
@ -0,0 +1 @@
|
|||
clang++ -std=c++20 -Iinclude/ src/foo.cc -c -o src/foo.cc.o
|
||||
1
include/lib2
Symbolic link
1
include/lib2
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../lib2
|
||||
2
lib2/bar.hh
Normal file
2
lib2/bar.hh
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
/** very important function */
|
||||
void showNyanCat();
|
||||
2
lib2/foo.hh
Normal file
2
lib2/foo.hh
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
/** foo foo foo */
|
||||
int frob();
|
||||
5
src/foo.cc
Normal file
5
src/foo.cc
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
#include "lib2/foo.hh"
|
||||
|
||||
void thingy() {
|
||||
frob();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue