Skip to content

Commit

Permalink
list-cpps.sh: skip most of the test framework
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jan 18, 2025
1 parent af2b508 commit 14b9823
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion bash/list-cpps.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
#!/bin/bash

/usr/bin/find ./src/main/native -name '*.cpp' -printf '$(N)/%P \\\n' \
/usr/bin/find ./src/main/native/glue -name '*.cpp' -printf '$(N)/glue/%P \\\n' \
| /usr/bin/sort

/usr/bin/find ./src/main/native/Jolt -name '*.cpp' -printf '$(N)/Jolt/%P \\\n' \
| /usr/bin/sort

/usr/bin/find ./src/main/native -name '*.inl' -printf '$(N)/%P \\\n' \
| /usr/bin/sort

echo '$(N)/TestFramework/External/Perlin.cpp'

0 comments on commit 14b9823

Please sign in to comment.