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 - -