From c98635842f004b9284a7f7d04073fff01cc63e6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Thu, 9 Apr 2020 12:56:38 +0200 Subject: [PATCH] Platform: allow engine-specific options in GlfwApplicationTest. --- src/Magnum/Platform/Test/GlfwApplicationTest.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Magnum/Platform/Test/GlfwApplicationTest.cpp b/src/Magnum/Platform/Test/GlfwApplicationTest.cpp index b84ef1c68..ad924417b 100644 --- a/src/Magnum/Platform/Test/GlfwApplicationTest.cpp +++ b/src/Magnum/Platform/Test/GlfwApplicationTest.cpp @@ -101,6 +101,7 @@ struct GlfwApplicationTest: Platform::Application { GlfwApplicationTest::GlfwApplicationTest(const Arguments& arguments): Platform::Application{arguments, NoCreate} { Utility::Arguments args; args.addOption("dpi-scaling").setHelp("dpi-scaling", "DPI scaled passed via Configuration instead of --magnum-dpi-scaling, to test app overrides") + .addSkippedPrefix("magnum", "engine-specific options") .parse(arguments.argc, arguments.argv); Configuration conf;