mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-12 16:50:54 +01:00
17 lines
346 B
Lua
17 lines
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")
|