This commit is contained in:
Jade Lovelace 2024-11-19 01:30:53 -08:00
commit 3df042f464
5 changed files with 11 additions and 0 deletions

1
build.sh Normal file
View file

@ -0,0 +1 @@
clang++ -std=c++20 -Iinclude/ src/foo.cc -c -o src/foo.cc.o

1
include/lib2 Symbolic link
View file

@ -0,0 +1 @@
../lib2

2
lib2/bar.hh Normal file
View file

@ -0,0 +1,2 @@
/** very important function */
void showNyanCat();

2
lib2/foo.hh Normal file
View file

@ -0,0 +1,2 @@
/** foo foo foo */
int frob();

5
src/foo.cc Normal file
View file

@ -0,0 +1,5 @@
#include "lib2/foo.hh"
void thingy() {
frob();
}