Skip to content

Commit

Permalink
Move to proper location
Browse files Browse the repository at this point in the history
  • Loading branch information
ReaverTeknoGods committed Apr 1, 2019
1 parent fce1f6d commit fd6c119
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
12 changes: 6 additions & 6 deletions OpenParrot/premake5.lua
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ project "OpenParrot"

links { "MinHook", "udis86" }

filter "platforms:x64"
files { "src/win64init.asm" }

targetsuffix "64"

prebuildcommands {
"if not exist $(TargetDir)output mkdir $(TargetDir)output",
}

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"
8 changes: 4 additions & 4 deletions OpenParrotKonamiLoader/premake5.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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"
8 changes: 4 additions & 4 deletions OpenParrotLoader/premake5.lua
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ project "OpenParrotLoader"

links { }

filter "platforms:x64"
targetsuffix "64"

prebuildcommands {
"if not exist $(TargetDir)output mkdir $(TargetDir)output",
}

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"

0 comments on commit fd6c119

Please sign in to comment.