From ffde6c6b9c7b580897e9b4b305897d8fdfed15c7 Mon Sep 17 00:00:00 2001 From: Nico Giansanti Date: Tue, 2 Apr 2019 00:59:11 +0300 Subject: [PATCH] Move to proper location --- OpenParrot/premake5.lua | 12 ++++++------ OpenParrotKonamiLoader/premake5.lua | 8 ++++---- OpenParrotLoader/premake5.lua | 8 ++++---- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/OpenParrot/premake5.lua b/OpenParrot/premake5.lua index a741898..13a803d 100644 --- a/OpenParrot/premake5.lua +++ b/OpenParrot/premake5.lua @@ -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\\" - } \ No newline at end of file + } + + filter "platforms:x64" + files { "src/win64init.asm" } + + targetsuffix "64" \ No newline at end of file diff --git a/OpenParrotKonamiLoader/premake5.lua b/OpenParrotKonamiLoader/premake5.lua index 6ed6b33..97c4a9e 100644 --- a/OpenParrotKonamiLoader/premake5.lua +++ b/OpenParrotKonamiLoader/premake5.lua @@ -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\\" - } \ No newline at end of file + } + + filter "platforms:x64" + targetsuffix "64" \ No newline at end of file diff --git a/OpenParrotLoader/premake5.lua b/OpenParrotLoader/premake5.lua index 6b8f21a..b8eaa16 100644 --- a/OpenParrotLoader/premake5.lua +++ b/OpenParrotLoader/premake5.lua @@ -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\\" - } \ No newline at end of file + } + + filter "platforms:x64" + targetsuffix "64" \ No newline at end of file