Skip to content

Commit

Permalink
fix setup
Browse files Browse the repository at this point in the history
  • Loading branch information
tinmarr committed Aug 20, 2022
1 parent 0ac8933 commit 9585fd6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ def package_files(directory):
version=version,
package_data={"rubato": package_files("rubato/static")},
ext_modules=[
Extension(
"rubato.c_src.pixel_editor",
["rubato/c_src/pixel_editor.py", "rubato/c_src/PixelEditor.cpp"],
extra_compile_args=["-std=c++14"],
),
*cythonize(
"rubato/**/*.py",
exclude=["rubato/__pyinstaller/**/*", "rubato/static/**/*"],
Expand All @@ -35,10 +40,5 @@ def package_files(directory):
"linetrace": linetrace,
},
),
Extension(
"rubato.c_src.pixel_editor",
["rubato/c_src/pixel_editor.py", "rubato/c_src/PixelEditor.cpp"],
extra_compile_args=["-std=c++14"],
),
]
)

0 comments on commit 9585fd6

Please sign in to comment.