Convert args to UTF-8 under Windows

This commit is contained in:
Martchus 2016-12-18 17:23:45 +01:00
parent 019e5a590e
commit 77da65ddf7
2 changed files with 3 additions and 2 deletions

View File

@ -11,7 +11,7 @@ set(META_APP_DESCRIPTION "A tageditor with Qt GUI and command line interface. Su
set(META_GUI_OPTIONAL true)
set(META_VERSION_MAJOR 2)
set(META_VERSION_MINOR 1)
set(META_VERSION_PATCH 0)
set(META_VERSION_PATCH 1)
# add project files
set(HEADER_FILES
@ -199,7 +199,7 @@ set(REQUIRED_ICONS
)
# find c++utilities
find_package(c++utilities 4.3.0 REQUIRED)
find_package(c++utilities 4.4.0 REQUIRED)
use_cpp_utilities()
include(BasicConfig)

View File

@ -152,6 +152,7 @@ int main(int argc, char *argv[])
{
// setup argument parser
ArgumentParser parser;
CMD_UTILS_CONVERT_ARGS_TO_UTF8;
SET_APPLICATION_INFO;
QT_CONFIG_ARGUMENTS qtConfigArgs;
HelpArgument helpArg(parser);