diff options
| author | ruki <[email protected]> | 2024-07-17 23:51:28 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2024-07-17 23:51:28 +0800 |
| commit | 9310167ec7254b065e687cba9740902939c005fd (patch) | |
| tree | b95a8deacadbc24500cda037a73c4106e50eb9fe /tests/actions/install/xmake.lua | |
| parent | 95c8f8615eb91de863c1eebeb27bb5c1c5e409a7 (diff) | |
revert bindir
Diffstat (limited to 'tests/actions/install/xmake.lua')
| -rw-r--r-- | tests/actions/install/xmake.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/actions/install/xmake.lua b/tests/actions/install/xmake.lua index f21deb5db..652857116 100644 --- a/tests/actions/install/xmake.lua +++ b/tests/actions/install/xmake.lua @@ -11,13 +11,13 @@ target("foo") add_headerfiles("src/foo.h", {public = true}) add_installfiles("src/foo.txt", {prefixdir = "assets", public = true}) set_prefixdir("/", {libdir = "foo_lib"}) - add_rpathdirs("@loader_path/../../foo_lib", {installonly = true, public = true}) target("app") set_kind("binary") add_deps("foo") add_files("src/main.cpp") - set_prefixdir("app") + set_prefixdir("app", {libdir = "app_lib"}) + add_rpathdirs("@loader_path/../app_lib", {installonly = true}) includes("@builtin/xpack") |
