1
0
mirror of synced 2024-11-11 22:07:09 +01:00

Move to proper location

This commit is contained in:
Nico Giansanti 2019-04-02 00:59:11 +03:00
parent ad88b23588
commit ffde6c6b9c
3 changed files with 14 additions and 14 deletions

View File

@ -17,11 +17,6 @@ project "OpenParrot"
links { "MinHook", "udis86" }
filter "platforms:x64"
files { "src/win64init.asm" }
targetsuffix "64"
prebuildcommands {
"if not exist $(TargetDir)output mkdir $(TargetDir)output",
}
@ -29,4 +24,9 @@ project "OpenParrot"
postbuildcommands {
"if exist $(TargetDir)OpenParrot.dll xcopy /y $(TargetDir)OpenParrot.dll $(TargetDir)output\\",
"if exist $(TargetDir)OpenParrot64.dll xcopy /y $(TargetDir)OpenParrot64.dll $(TargetDir)output\\"
}
}
filter "platforms:x64"
files { "src/win64init.asm" }
targetsuffix "64"

View File

@ -17,13 +17,13 @@ project "OpenParrotKonamiLoader"
links { "MinHook", "udis86" }
filter "platforms:x64"
targetsuffix "64"
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"

View File

@ -16,9 +16,6 @@ project "OpenParrotLoader"
links { }
filter "platforms:x64"
targetsuffix "64"
prebuildcommands {
"if not exist $(TargetDir)output mkdir $(TargetDir)output",
}
@ -26,4 +23,7 @@ project "OpenParrotLoader"
postbuildcommands {
"if exist $(TargetDir)OpenParrotLoader.exe xcopy /y $(TargetDir)OpenParrotLoader.exe $(TargetDir)output\\",
"if exist $(TargetDir)OpenParrotLoader64.exe xcopy /y $(TargetDir)OpenParrotLoader64.exe $(TargetDir)output\\"
}
}
filter "platforms:x64"
targetsuffix "64"