| 78 | } |
| 79 | |
| 80 | void PrintHelp() |
| 81 | { |
| 82 | std::wcout << SetOutputDefault |
| 83 | << "Usage: FontDatabaseBuilder.exe [-output OutputFile] [-dedup] [-worker WorkerCount] Directory... \n" |
| 84 | << "\t-output OutputFile: path to the output\n" |
| 85 | << "\t-dedup: enable deduplication of files\n" |
| 86 | << "\t-worker WorkerCount: set work thread count, default is half of your processor count\n" |
| 87 | << "\tDirectory: directories need to build index" << std::endl; |
| 88 | } |
| 89 | |
| 90 | int wmain(int argc, wchar_t* argv[], wchar_t* envp[]) |
| 91 | { |