mirror of
https://github.com/rainerzufalldererste/windows_x64_shellcode_template
synced 2026-06-08 16:57:13 +00:00
56 lines
1.1 KiB
Lua
56 lines
1.1 KiB
Lua
ProjectName = "host_process"
|
|
project(ProjectName)
|
|
|
|
--Settings
|
|
kind "ConsoleApp"
|
|
language "C"
|
|
flags { "FatalWarnings" }
|
|
staticruntime "On"
|
|
|
|
dependson { "child_process" }
|
|
|
|
defines { "_CRT_SECURE_NO_WARNINGS" }
|
|
|
|
objdir "intermediate/obj"
|
|
|
|
files { "src/**.c", "src/**.cpp", "src/**.h", "src/**.inl", "src/**rc" }
|
|
files { "project.lua" }
|
|
|
|
includedirs { "src" }
|
|
|
|
targetname(ProjectName)
|
|
targetdir "../../builds/bin"
|
|
debugdir "../../builds/bin"
|
|
|
|
filter { "configurations:Debug", "system:Windows" }
|
|
ignoredefaultlibraries { "libcmt" }
|
|
filter { }
|
|
|
|
filter {}
|
|
configuration {}
|
|
|
|
warnings "Extra"
|
|
|
|
filter {"configurations:Release"}
|
|
targetname "%{prj.name}"
|
|
filter {"configurations:Debug"}
|
|
targetname "%{prj.name}D"
|
|
|
|
filter { }
|
|
flags { "NoPCH" }
|
|
exceptionhandling "Off"
|
|
rtti "Off"
|
|
floatingpoint "Fast"
|
|
|
|
filter { "configurations:Debug*" }
|
|
defines { "_DEBUG" }
|
|
symbols "FastLink"
|
|
|
|
filter { "configurations:Release" }
|
|
defines { "NDEBUG" }
|
|
optimize "Speed"
|
|
flags { "NoBufferSecurityCheck", "NoIncrementalLink" }
|
|
omitframepointer "On"
|
|
editandcontinue "Off"
|
|
symbols "On"
|