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,10 @@
(executable
(name main)
(modules main))
(library
(name foo)
(preprocess (action (run ./main.exe %{input-file})))
(modules foo))
(include_subdirs unqualified)

View file

@ -0,0 +1,2 @@
let () =
print_endline "print_endline \"foo\""

View file

@ -0,0 +1,5 @@
Test for (include_subdir unqualified) with (preprocess (action ...))
--------------------------------------------------------------------
$ dune exec ./main.exe @all
print_endline "foo"