aboutsummaryrefslogtreecommitdiff
path: root/tools/windows
diff options
context:
space:
mode:
authorRechi <Rechi@users.noreply.github.com>2018-04-26 10:00:00 +0200
committerRechi <Rechi@users.noreply.github.com>2018-04-26 10:00:00 +0200
commite16e3968d202e84291b88a9cecf13dbfe72d7e8a (patch)
tree2b6da7b2c01114b4cd6320127558bb2759c03b61 /tools/windows
parent66e8df8757a82447a0278e0290125485b4c12419 (diff)
[cleanup][windows] remove unused scripts
generation is handled in cmake
Diffstat (limited to 'tools/windows')
-rw-r--r--tools/windows/JsonSchemaBuilder.bat21
1 files changed, 0 insertions, 21 deletions
diff --git a/tools/windows/JsonSchemaBuilder.bat b/tools/windows/JsonSchemaBuilder.bat
deleted file mode 100644
index ad9f8b4c51..0000000000
--- a/tools/windows/JsonSchemaBuilder.bat
+++ /dev/null
@@ -1,21 +0,0 @@
-@ECHO OFF
-
-SET cur_dir=%CD%
-
-SET base_dir=%cur_dir%\..\..
-SET builddeps_dir=%cur_dir%\..\BuildDependencies
-SET bin_dir=%builddeps_dir%\bin
-SET msys_bin_dir=%builddeps_dir%\msys64
-IF NOT EXIST %msys_bin_dir% SET msys_bin_dir=%builddeps_dir%\msys32
-SET jsonrpc_path=%base_dir%\xbmc\interfaces\json-rpc
-SET jsonrpc_schema_path=%jsonrpc_path%\schema
-SET jsonrpc_output=ServiceDescription.h
-
-SET xbmc_json_path=%base_Dir%\addons\xbmc.json
-SET xbmc_json_output=addon.xml
-
-SET /p version=<"%jsonrpc_schema_path%\version.txt"
-"%msys_bin_dir%\usr\bin\sed.exe" s/@jsonrpc_version@/%version%/g "%xbmc_json_path%\%xbmc_json_output%.in" > "%xbmc_json_path%\%xbmc_json_output%"
-
-"%bin_dir%\json-rpc\JsonSchemaBuilder.exe" "%jsonrpc_schema_path%\version.txt" "%jsonrpc_schema_path%\license.txt" "%jsonrpc_schema_path%\methods.json" "%jsonrpc_schema_path%\types.json" "%jsonrpc_schema_path%\notifications.json"
-MOVE /Y %jsonrpc_output% "%jsonrpc_path%\%jsonrpc_output%" \ No newline at end of file