This commit is contained in:
swrup 2025-11-11 02:07:51 +01:00
parent aa2ff7b2f0
commit 2f3113f55d
11742 changed files with 1223940 additions and 0 deletions

View file

@ -0,0 +1,31 @@
(library
(name lib1)
(public_name lib1)
(modules Lib1))
(alias
(name runtest)
(package lib1)
(action (run ./test1.exe)))
(executable
(name test1)
(modules Test1)
(libraries lib1))
(library
(name lib2)
(public_name lib2)
(modules Lib2))
(alias
(name runtest)
(package lib2)
(action (run ./test2.exe)))
(executable
(name test2)
(modules Test2)
(libraries lib2))