2018-09-11 15:52:05 +02:00
|
|
|
project "OpenParrotKonamiLoader"
|
|
|
|
targetname "OpenParrotKonamiLoader"
|
|
|
|
language "C++"
|
|
|
|
kind "ConsoleApp"
|
2019-03-30 23:35:14 +01:00
|
|
|
removeplatforms { "x64" }
|
2018-09-11 15:52:05 +02:00
|
|
|
|
|
|
|
characterset "MBCS"
|
|
|
|
|
|
|
|
files
|
|
|
|
{
|
|
|
|
"src/**.cpp", "src/**.h",
|
|
|
|
"deps_inc/**.cpp", "deps_inc/**.h"
|
|
|
|
}
|
|
|
|
|
|
|
|
includedirs { "src", "deps_inc" }
|
|
|
|
libdirs { }
|
|
|
|
|
2018-09-12 14:09:31 +02:00
|
|
|
links { "MinHook", "udis86" }
|
2018-09-11 15:52:05 +02:00
|
|
|
|
2019-04-01 03:50:18 +02: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-01 23:59:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
filter "platforms:x64"
|
|
|
|
targetsuffix "64"
|