We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b095c0b commit aab6595Copy full SHA for aab6595
xmake.lua
@@ -19,7 +19,11 @@ target("blook")
19
add_files("src/platform/linux/*.cpp")
20
end
21
add_includedirs("include", {public = true})
22
+ add_headerfiles("include/(**.h)")
23
24
+ if is_plat("windows") then
25
+ add_syslinks("advapi32")
26
+ end
27
add_packages("zasm", {public = true})
28
29
target("blook-dll-hijack-codegen")
@@ -37,7 +41,7 @@ target("blook-test")
37
41
38
42
39
43
if is_plat("windows") then
40
- add_syslinks("user32", "advapi32")
44
+ add_syslinks("user32")
45
46
add_deps("blook")
47
0 commit comments