You've already forked libadalang
mirror of
https://github.com/AdaCore/libadalang.git
synced 2026-02-12 12:28:54 -08:00
12 lines
233 B
Python
12 lines
233 B
Python
import os.path
|
|
|
|
import libadalang as lal
|
|
|
|
|
|
class App(lal.App):
|
|
def process_unit(self, unit):
|
|
print(f"Processing {os.path.basename(unit.filename)}")
|
|
|
|
|
|
App.run(["-Proot.gpr", "--subproject=sub1", "--subproject=installed"])
|