2018-09-11 16:52:05 +03:00
|
|
|
project "OpenParrotKonamiLoader"
|
|
|
|
targetname "OpenParrotKonamiLoader"
|
|
|
|
language "C++"
|
|
|
|
kind "ConsoleApp"
|
2019-03-31 00:35:14 +02:00
|
|
|
removeplatforms { "x64" }
|
2018-09-11 16:52:05 +03:00
|
|
|
|
|
|
|
characterset "MBCS"
|
|
|
|
|
|
|
|
files
|
|
|
|
{
|
|
|
|
"src/**.cpp", "src/**.h",
|
|
|
|
"deps_inc/**.cpp", "deps_inc/**.h"
|
|
|
|
}
|
|
|
|
|
|
|
|
includedirs { "src", "deps_inc" }
|
|
|
|
libdirs { }
|
|
|
|
|
2018-09-12 15:09:31 +03:00
|
|
|
links { "MinHook", "udis86" }
|
2018-09-11 16:52:05 +03:00
|
|
|
|
2019-04-01 04:50:18 +03:00
|
|
|
prebuildcommands {
|
|
|
|
"if not exist $(TargetDir)output mkdir $(TargetDir)output",
|
|
|
|
}
|
|
|
|
|
|
|
|
postbuildcommands {
|
|
|
|
"if exist $(TargetDir)OpenParrotKonamiLoader.exe xcopy /y $(TargetDir)OpenParrotKonamiLoader.exe $(TargetDir)output\\"
|
2019-04-02 00:59:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
filter "platforms:x64"
|
|
|
|
targetsuffix "64"
|