mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-12-01 03:28:53 +08:00
59 lines
1.3 KiB
C++
59 lines
1.3 KiB
C++
/**
|
|
* File: main.cc
|
|
* Author: AWTK Develop Team
|
|
* Brief: generate theme date from xml
|
|
*
|
|
* Copyright (c) 2018 - 2020 Guangzhou ZHIYUAN Electronics Co.,Ltd.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* License file for more details.
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* History:
|
|
* ================================================================
|
|
* 2018-01-19 Li XianJing <xianjimli@hotmail.com> adapted from ftk.
|
|
*
|
|
*/
|
|
|
|
#include "tkc/mem.h"
|
|
#include "common/utils.h"
|
|
#include "xml_theme_gen.h"
|
|
|
|
int wmain(int argc, wchar_t* argv[]) {
|
|
bool_t output_bin = argc > 3;
|
|
const char* in_filename = NULL;
|
|
const char* out_filename = NULL;
|
|
|
|
TKMEM_INIT(4 * 1024 * 1024)
|
|
|
|
if (argc < 3) {
|
|
printf("Usage: %S input output [bin]\n", argv[0]);
|
|
return 0;
|
|
}
|
|
|
|
str_t in_file;
|
|
str_t out_file;
|
|
|
|
str_init(&in_file, 0);
|
|
str_init(&out_file, 0);
|
|
|
|
str_from_wstr(&in_file, argv[1]);
|
|
str_from_wstr(&out_file, argv[2]);
|
|
in_filename = in_file.str;
|
|
out_filename = out_file.str;
|
|
|
|
exit_if_need_not_update(in_filename, out_filename);
|
|
xml_gen(in_filename, out_filename, output_bin);
|
|
|
|
str_reset(&in_file);
|
|
str_reset(&out_file);
|
|
|
|
return 0;
|
|
}
|
|
|
|
#include "common/main.inc"
|