diff options
| author | star9029 <[email protected]> | 2025-05-06 19:48:06 +0800 |
|---|---|---|
| committer | star9029 <[email protected]> | 2025-05-06 19:48:06 +0800 |
| commit | f88aa4f41876e32987c60403831c105af54742c5 (patch) | |
| tree | 275cc4f2ca1eb411dd9b1b42438b492190d47200 /tests/projects/windows | |
| parent | 7dc8bf58b37e7b3ba513b27490ee3107b29e0730 (diff) | |
Fix idl test
Diffstat (limited to 'tests/projects/windows')
| -rw-r--r-- | tests/projects/windows/idl/test_rpc/xmake.lua | 2 | ||||
| -rw-r--r-- | tests/projects/windows/idl/test_rpc_noserver/xmake.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/projects/windows/idl/test_rpc/xmake.lua b/tests/projects/windows/idl/test_rpc/xmake.lua index 3eba457d6..584994678 100644 --- a/tests/projects/windows/idl/test_rpc/xmake.lua +++ b/tests/projects/windows/idl/test_rpc/xmake.lua @@ -2,6 +2,6 @@ add_rules("mode.debug", "mode.release") target("idltest_rpc") set_kind("binary") - add_files("src/*.idl" ) + add_files("src/*.idl", {client = true, server = true}) add_files("src/*.c") add_syslinks("Rpcrt4") diff --git a/tests/projects/windows/idl/test_rpc_noserver/xmake.lua b/tests/projects/windows/idl/test_rpc_noserver/xmake.lua index c44a6433b..25c43d6a2 100644 --- a/tests/projects/windows/idl/test_rpc_noserver/xmake.lua +++ b/tests/projects/windows/idl/test_rpc_noserver/xmake.lua @@ -2,6 +2,6 @@ add_rules("mode.debug", "mode.release") target("idltest_rpc_noserver") set_kind("binary") - add_files("src/*.idl", { server = false } ) + add_files("src/*.idl", {client = true, server = false}) add_files("src/*.c") add_syslinks("Rpcrt4") |
