add a test for the find script on the build directory

This commit is contained in:
Mario Werner
2016-01-31 00:02:49 +01:00
parent 4aeeb49d23
commit 00fda9b25a
3 changed files with 30 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
#include <cppformat/format.h>
int main(int argc, char** argv)
{
for(int i = 0; i < argc; ++i)
fmt::print("{}: {}\n", i, argv[i]);
return 0;
}