Skip to content
Snippets Groups Projects
Commit 91ca36ff authored by Stephan Seitz's avatar Stephan Seitz
Browse files

Avoid absolute paths in setup.py

parent d15fd6b0
No related merge requests found
...@@ -18,7 +18,7 @@ if __name__ == "__main__": ...@@ -18,7 +18,7 @@ if __name__ == "__main__":
object_cache = dirname(__file__) object_cache = dirname(__file__)
module_name = 'pyronn_torch_cpp' module_name = 'pyronn_torch_cpp'
cuda_sources = glob(join(dirname(__file__), 'generated_files', '*.cu')) cuda_sources = glob(join('generated_files', '*.cu'))
generated_file = join('generated_files', 'pyronn_torch.cpp') generated_file = join('generated_files', 'pyronn_torch.cpp')
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment