diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-05-10 22:51:01 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-05-22 12:43:08 +0900 |
| commit | 99e16012c2ddbfa877a77c2176e15c3fea5643e6 (patch) | |
| tree | 8482ed833daa420ec81f5bc38f244a64cc67c194 /src/tests/mmftest.cpp | |
| parent | d881a9b6b5bcd95524d5e2bd8aea25d89f53f404 (diff) | |
| download | krecipes-99e16012c2ddbfa877a77c2176e15c3fea5643e6.tar.gz krecipes-99e16012c2ddbfa877a77c2176e15c3fea5643e6.zip | |
Add cmake rules for tests files and make tests runnable.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/tests/mmftest.cpp')
| -rw-r--r-- | src/tests/mmftest.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/tests/mmftest.cpp b/src/tests/mmftest.cpp index 453fcaa..a534721 100644 --- a/src/tests/mmftest.cpp +++ b/src/tests/mmftest.cpp @@ -8,7 +8,9 @@ * (at your option) any later version. * ***************************************************************************/ +#include <tdeaboutdata.h> #include <tdeapplication.h> +#include <tdecmdlineargs.h> #include <tqstring.h> @@ -24,7 +26,10 @@ using std::endl; int main(int argc, char *argv[]) { - TDEApplication a(argc, argv, "mmftest"); + TDEAboutData *about = new TDEAboutData("mmftest", I18N_NOOP("mmftest"), "1.0", + nullptr, TDEAboutData::License_GPL, nullptr, nullptr, nullptr, nullptr); + TDECmdLineArgs::init(argc, argv, about); + TDEApplication a; printf("Creating MMFImporter.\n"); MMFImporter importer; |
