-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpremake5.lua
More file actions
31 lines (23 loc) · 941 Bytes
/
premake5.lua
File metadata and controls
31 lines (23 loc) · 941 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
workspace "MGSALTTABPatch"
configurations { "Debug", "Release" }
architecture "x64"
location "build"
buildoptions {"-std:c++latest"}
defines { "X64" }
project "MGSALTTABPatch"
kind "SharedLib"
language "C++"
targetdir "bin/x64/%{cfg.buildcfg}"
targetname "MGSALTTABPatch"
targetextension ".asi"
includedirs { "source" }
includedirs { "external" }
files { "source/dllmain.h", "source/dllmain.cpp", "source/codereplacement.cpp", "source/codereplacement.h", "source/mgs2.cpp", "source/mgs2.h", "source/mgs3.cpp", "source/mgs3.h", "external/Hooking.Patterns/Hooking.Patterns.cpp", "external/Hooking.Patterns/Hooking.Patterns.h" }
characterset ("UNICODE")
filter "configurations:Debug"
defines { "DEBUG" }
symbols "On"
filter "configurations:Release"
defines { "NDEBUG" }
optimize "On"
staticruntime "On"