9f8f8e294f
Also add minhook to premake of KonamiLoader just in case
22 lines
355 B
Lua
22 lines
355 B
Lua
project "OpenParrotKonamiLoader"
|
|
targetname "OpenParrotKonamiLoader"
|
|
language "C++"
|
|
kind "ConsoleApp"
|
|
|
|
characterset "MBCS"
|
|
|
|
files
|
|
{
|
|
"src/**.cpp", "src/**.h",
|
|
"deps_inc/**.cpp", "deps_inc/**.h"
|
|
}
|
|
|
|
includedirs { "src", "deps_inc" }
|
|
libdirs { }
|
|
|
|
links { "MinHook", "udis86" }
|
|
|
|
postbuildcommands { }
|
|
|
|
filter "platforms:x64"
|
|
targetsuffix "64" |