forked from bruhmoment21/UniversalHookX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpremake5.lua
More file actions
33 lines (27 loc) · 853 Bytes
/
Copy pathpremake5.lua
File metadata and controls
33 lines (27 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
workspace "MultiHook"
configurations { "Release" }
platforms { "x64" }
project "MultiHook"
kind "SharedLib"
language "C++"
cppdialect "C++latest"
characterset "MBCS"
architecture "x86_64"
targetdir "bin"
objdir "obj"
targetname "MultiHook"
includedirs { "$(VULKAN_SDK)/Include" }
libdirs { "$(VULKAN_SDK)/Lib" }
links { "vulkan-1" }
defines {
"ImTextureID=ImU64",
"NDEBUG",
}
optimize "Speed"
symbols "Off"
linktimeoptimization "On"
buildoptions { "/Oy", "/Oi", "/Gy", "/GF", "/GS-" }
linkoptions { "/OPT:REF", "/OPT:ICF" }
files { "src/**" }
filter "files:**/imgui_impl_dx12.cpp"
defines { "IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS" }