We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 957433b + 4343a2f commit 5e07663Copy full SHA for 5e07663
1 file changed
bindings/python/scripts/interface.py
@@ -157,7 +157,8 @@ def _get_args(self, category=None):
157
158
159
def main():
160
- cmake = Template(filename="CMakeLists.txt.in")
+ file_dir = os.path.dirname(__file__)
161
+ cmake = Template(filename=os.path.join(file_dir, "CMakeLists.txt.in"))
162
cat = CategorizedArgs()
163
all_args = cat.categorized_args
164
data = cmake.render(files=[], **(all_args))
0 commit comments