check if cppformat is the master project or just used as dependency

Based on that information less intrusive option defaults are choosen.
Additionally, packaging support is omitted.
This commit is contained in:
Mario Werner
2016-02-03 11:20:19 +01:00
parent 797d72133e
commit c1a4cd0fa7
4 changed files with 44 additions and 6 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;
}