We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f8f818d + bdda534 commit 4efe908Copy full SHA for 4efe908
lkql/manage.py
@@ -1,5 +1,7 @@
1
#! /usr/bin/env python
2
3
+import os.path
4
+
5
from langkit.compile_context import CompileCtx
6
import langkit.config as C
7
from langkit.libmanage import ManageScript
@@ -15,7 +17,7 @@ def create_config(self, args):
15
17
return C.CompilationConfig(
16
18
lkt_spec=None,
19
library=C.LibraryConfig(
- root_directory=".",
20
+ root_directory=os.path.dirname(__file__),
21
language_name=names.Name("Lkql"),
22
short_name="lkql",
23
),
0 commit comments