diff options
| author | Stefan Boberg <[email protected]> | 2023-12-06 16:34:17 +0100 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2023-12-06 16:34:17 +0100 |
| commit | 6059f9f5f9e57c4ffc065cb46a9a0c60d652af04 (patch) | |
| tree | 09fb58890b84bbc9edd818173a701c641ca4ff85 /src/zenutil/xmake.lua | |
| parent | move core/process into util/process (diff) | |
| download | zen-6059f9f5f9e57c4ffc065cb46a9a0c60d652af04.tar.xz zen-6059f9f5f9e57c4ffc065cb46a9a0c60d652af04.zip | |
implemented using zen run with tracking of launched subprocess
Diffstat (limited to 'src/zenutil/xmake.lua')
| -rw-r--r-- | src/zenutil/xmake.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/zenutil/xmake.lua b/src/zenutil/xmake.lua index 0da6d23a6..57ee66b9b 100644 --- a/src/zenutil/xmake.lua +++ b/src/zenutil/xmake.lua @@ -6,5 +6,7 @@ target('zenutil') add_headerfiles("**.h") add_files("**.cpp") add_includedirs("include", {public=true}) - add_deps("zencore") + add_deps("zencore", "zentrack") add_packages("vcpkg::spdlog") + add_packages("vcpkg::detours") + add_syslinks("detours") |