From 096f4062894f3aae82190b41f0fc76b76b04972d Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Mon, 15 Jun 2015 18:40:27 +0200 Subject: [PATCH] [DEV] remove lutin builder --- edtaa3/edtaa3func.c => edtaa3func.c | 0 edtaa3/edtaa3func.h => edtaa3func.h | 0 lutin_edtaa3.py | 24 ------------------------ 3 files changed, 24 deletions(-) rename edtaa3/edtaa3func.c => edtaa3func.c (100%) rename edtaa3/edtaa3func.h => edtaa3func.h (100%) delete mode 100644 lutin_edtaa3.py diff --git a/edtaa3/edtaa3func.c b/edtaa3func.c similarity index 100% rename from edtaa3/edtaa3func.c rename to edtaa3func.c diff --git a/edtaa3/edtaa3func.h b/edtaa3func.h similarity index 100% rename from edtaa3/edtaa3func.h rename to edtaa3func.h diff --git a/lutin_edtaa3.py b/lutin_edtaa3.py deleted file mode 100644 index adfbaa2..0000000 --- a/lutin_edtaa3.py +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/python -import lutin.module as module -import lutin.tools as tools - -def get_desc(): - return "edtaa3 library (create distance field from image)" - -def create(target): - # module name is 'edn' and type binary. - myModule = module.Module(__file__, 'edtaa3', 'LIBRARY') - - # add the file to compile: - myModule.add_src_file([ - 'edtaa3/edtaa3func.c' - ]) - - myModule.compile_version_CC(1999) - - myModule.add_export_path(tools.get_current_path(__file__)) - - # add the currrent module at the - return myModule - -