Skip to content

Commit 37226ce

Browse files
committed
Simplified SConstruct file
1 parent 6121a9f commit 37226ce

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

SConstruct

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,12 @@ To run the compilation for all implmeentations in one language, e.g. Rust, run t
99

1010
from pathlib import Path
1111

12+
env = Environment()
13+
1214
# Add other languages here when you want to add language targets
1315
languages = ['c']
1416

15-
root_dir = Path.cwd()
16-
17-
env = Environment()
1817
env.C = env.Program
1918

20-
SConscript('SConscript', exports='env languages root_dir')
19+
SConscript('SConscript', exports='env languages')
2120

0 commit comments

Comments
 (0)