1
0
mirror of synced 2024-11-14 23:07:36 +01:00
OpenParrot/OpenParrotKonamiLoader/premake5.lua
2019-04-02 00:59:11 +03:00

29 lines
592 B
Lua

project "OpenParrotKonamiLoader"
targetname "OpenParrotKonamiLoader"
language "C++"
kind "ConsoleApp"
removeplatforms { "x64" }
characterset "MBCS"
files
{
"src/**.cpp", "src/**.h",
"deps_inc/**.cpp", "deps_inc/**.h"
}
includedirs { "src", "deps_inc" }
libdirs { }
links { "MinHook", "udis86" }
prebuildcommands {
"if not exist $(TargetDir)output mkdir $(TargetDir)output",
}
postbuildcommands {
"if exist $(TargetDir)OpenParrotKonamiLoader.exe xcopy /y $(TargetDir)OpenParrotKonamiLoader.exe $(TargetDir)output\\"
}
filter "platforms:x64"
targetsuffix "64"