diff options
Diffstat (limited to 'src/option-parser.cc')
-rw-r--r-- | src/option-parser.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/option-parser.cc b/src/option-parser.cc index 9d1957f2..071cf8cc 100644 --- a/src/option-parser.cc +++ b/src/option-parser.cc @@ -57,7 +57,7 @@ OptionParser::OptionParser(const char* program_name, const char* description) exit(0); }); AddOption("version", "Print version information", []() { - printf("%s\n", WABT_VERSION_INFO); + printf("%s\n", CMAKE_PROJECT_VERSION); exit(0); }); } |