Commit d88cc764 authored by Felipe Bordeu's avatar Felipe Bordeu
Browse files

(setup.py) remove non compiled package creation

parent e5adf18f
Loading
Loading
Loading
Loading
+27 −36
Original line number Diff line number Diff line
@@ -109,7 +109,6 @@ class add_path():
        except ValueError:
            pass

try:
with add_path('./src/'):
    for generator in cpp_generators:
        code = compile(open(generator).read(),generator,"exec")
@@ -138,14 +137,6 @@ try:
    language="c++",
    ))

except ImportError as e:
    print(f"Compilation disabled since {e.name} package is missing")
    modules = []
    ext_libraries = []
except Exception as e:
    print("Error during generation of cpp sources ")
    print(e)

extra_compile_args = {
            'unix': ['-fopenmp','-std=c++17' ],
            'msvc': ['/openmp', '/std:c++17']