F4MP/codigos originales/tiltedcode/Code/tp_process/xmake.lua
2026-01-06 18:53:59 +01:00

17 lines
No EOL
346 B
Lua

target("TPProcess")
set_kind("binary")
set_group("Client")
if is_plat("windows") then
add_ldflags("/subsystem:windows")
end
add_includedirs(
".")
add_headerfiles("*.h")
add_files(
"*.cpp",
"process.rc")
add_deps("UiProcess")
add_packages("tiltedcore", "cef", "hopscotch-map")