diff options
| author | ruki <[email protected]> | 2021-09-02 23:37:05 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2021-09-02 23:37:05 +0800 |
| commit | 1306c34442e6089f05ef54b0772d4fb629c25117 (patch) | |
| tree | 4da82b2e06512286d0f6b8e8429b429e828f28e1 /tests/projects/pascal/shared/xmake.lua | |
| parent | b47154e928d5fa960365a205420912ae1363ba53 (diff) | |
add shared test for pascal
Diffstat (limited to 'tests/projects/pascal/shared/xmake.lua')
| -rw-r--r-- | tests/projects/pascal/shared/xmake.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/projects/pascal/shared/xmake.lua b/tests/projects/pascal/shared/xmake.lua new file mode 100644 index 000000000..96697bcbd --- /dev/null +++ b/tests/projects/pascal/shared/xmake.lua @@ -0,0 +1,10 @@ +add_rules("mode.debug", "mode.release") +target("foo") + set_kind("shared") + add_files("src/foo.pas") + +target("test") + set_kind("binary") + add_deps("foo") + add_files("src/main.pas") + |
