From cd9d01c23800ec279779dd58fbe1a71d9e1d2933 Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Mon, 25 Oct 2021 07:59:34 +0200 Subject: [PATCH] [DEV] uptate new lutin declaration model --- GLD_jvm-basics.json | 29 +++++++++++++++++++++++++++++ lutin_jvm-basics.py | 42 ------------------------------------------ 2 files changed, 29 insertions(+), 42 deletions(-) create mode 100644 GLD_jvm-basics.json delete mode 100644 lutin_jvm-basics.py diff --git a/GLD_jvm-basics.json b/GLD_jvm-basics.json new file mode 100644 index 0000000..6e24a94 --- /dev/null +++ b/GLD_jvm-basics.json @@ -0,0 +1,29 @@ +{ + "type":"LIBRARY", + "group-id":"com.atria-soft", + "description":"jvm basis call for all element who have jvm access", + "license":"MPL-2", + "license-file":"file://LICENCE.txt", + "maintainer":"file://authors.txt", + "author":"file://authors.txt", + "version":"file://version.txt", + "code-quality":"MEDIUM", + + "source": [ + "jvm-basics/debug.cpp", + "jvm-basics/jvm-basics.cpp" + ], + "header": [ + "jvm-basics/jvm-basics.hpp" + ], + "path":[ + "." + ], + "compilation-version": { + "language": "c++", + "version": 2017 + }, + "dependency": [ + "etk" + ] +} \ No newline at end of file diff --git a/lutin_jvm-basics.py b/lutin_jvm-basics.py deleted file mode 100644 index da6373d..0000000 --- a/lutin_jvm-basics.py +++ /dev/null @@ -1,42 +0,0 @@ -#!/usr/bin/python -import realog.debug as debug -import lutin.tools as tools -import os - - -def get_type(): - return "LIBRARY" - -def get_desc(): - return "jvm basis call for all element who have jvm access" - -def get_licence(): - return "MPL-2" - -def get_compagny_type(): - return "com" - -def get_compagny_name(): - return "atria-soft" - -def get_maintainer(): - return ["Mr DUPIN Edouard "] - -def get_version(): - return [1,2,0,"dev"] - -def configure(target, my_module): - my_module.add_depend(['etk']) - my_module.add_extra_flags() - my_module.add_src_file([ - 'jvm-basics/debug.cpp', - 'jvm-basics/jvm-basics.cpp' - ]) - my_module.add_header_file([ - 'jvm-basics/jvm-basics.hpp' - ]) - my_module.compile_version("c++", 2011) - my_module.add_path(".") - return True - -