Skip to content
Snippets Groups Projects
Commit c8b8da97 authored by Christoph Alt's avatar Christoph Alt
Browse files

allowing also .hip as generated file extension

parent 8f261ded
1 merge request!13Allowing also .hip as generated file extension
...@@ -361,7 +361,7 @@ class CommandLineParameters: ...@@ -361,7 +361,7 @@ class CommandLineParameters:
extensions = tuple((ext[1:] if ext[0] == "." else ext) for ext in extensions) extensions = tuple((ext[1:] if ext[0] == "." else ext) for ext in extensions)
HEADER_FILE_EXTENSIONS = {"h", "hpp", "hxx", "h++", "cuh"} HEADER_FILE_EXTENSIONS = {"h", "hpp", "hxx", "h++", "cuh"}
IMPL_FILE_EXTENSIONS = {"c", "cpp", "cxx", "c++", "cu", ".impl.h", "ipp"} IMPL_FILE_EXTENSIONS = {"c", "cpp", "cxx", "c++", "cu", ".impl.h", "ipp", "hip"}
for ext in extensions: for ext in extensions:
if ext in HEADER_FILE_EXTENSIONS: if ext in HEADER_FILE_EXTENSIONS:
......
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