-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add logging to the detour events and move pipe init earlier * Add exe dependency and install path parameter * Update CI * Run directly * Remove tests * Update history json tests * Fix build history manager tests * Fix up tests * Add all tests to the build * Disable core client tests for now
- Loading branch information
Showing
38 changed files
with
870 additions
and
566 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
@echo off | ||
SET Flavor=%1 | ||
SET ScriptsDir=%~dp0 | ||
SET SourceDir=%ScriptsDir%..\Source | ||
SET ClientCLIDir=%SourceDir%\Client\CLI | ||
SET DetoursDir=%SourceDir%\Monitor\Detours | ||
SET BinaryDirectorPath=out\bin\MSVC\%Flavor%\win32 | ||
SET ClientCLIBinaryDirectory=%ClientCLIDir%\%BinaryDirectorPath% | ||
SET DetoursBinaryDirectory=%DetoursDir%\%BinaryDirectorPath% | ||
|
||
REM - Build each version of the detours dll | ||
echo soup build %DetoursDir% -architecture x64 -flavor %Flavor% | ||
call soup build %DetoursDir% -architecture x64 -flavor %Flavor% | ||
if %ERRORLEVEL% NEQ 0 exit /B %ERRORLEVEL% | ||
echo soup build %DetoursDir% -architecture x86 -flavor %Flavor% | ||
call soup build %DetoursDir% -architecture x86 -flavor %Flavor% | ||
if %ERRORLEVEL% NEQ 0 exit /B %ERRORLEVEL% | ||
|
||
REM - Build the host | ||
echo soup build %ClientCLIDir% -flavor %Flavor% | ||
call soup build %ClientCLIDir% -flavor %Flavor% | ||
if %ERRORLEVEL% NEQ 0 exit /B %ERRORLEVEL% | ||
|
||
REM - Copy the detour dlls | ||
echo copy %DetoursBinaryDirectory%\x64\Monitor.Detours.dll %ClientCLIBinaryDirectory%\x64\Monitor.Detours.64.dll | ||
copy %DetoursBinaryDirectory%\x64\Monitor.Detours.dll %ClientCLIBinaryDirectory%\x64\Monitor.Detours.64.dll > nul | ||
echo copy %DetoursBinaryDirectory%\x86\Monitor.Detours.dll %ClientCLIBinaryDirectory%\x64\Monitor.Detours.32.dll | ||
@echo off | ||
SET Flavor=%1 | ||
SET ScriptsDir=%~dp0 | ||
SET SourceDir=%ScriptsDir%..\Source | ||
SET ClientCLIDir=%SourceDir%\Client\CLI | ||
SET DetoursDir=%SourceDir%\Monitor\Detours | ||
SET BinaryDirectorPath=out\bin\MSVC\%Flavor%\win32 | ||
SET ClientCLIBinaryDirectory=%ClientCLIDir%\%BinaryDirectorPath% | ||
SET DetoursBinaryDirectory=%DetoursDir%\%BinaryDirectorPath% | ||
|
||
REM - Build each version of the detours dll | ||
echo soup build %DetoursDir% -architecture x64 -flavor %Flavor% | ||
call soup build %DetoursDir% -architecture x64 -flavor %Flavor% | ||
if %ERRORLEVEL% NEQ 0 exit /B %ERRORLEVEL% | ||
echo soup build %DetoursDir% -architecture x86 -flavor %Flavor% | ||
call soup build %DetoursDir% -architecture x86 -flavor %Flavor% | ||
if %ERRORLEVEL% NEQ 0 exit /B %ERRORLEVEL% | ||
|
||
REM - Build the host | ||
echo soup build %ClientCLIDir% -flavor %Flavor% | ||
call soup build %ClientCLIDir% -flavor %Flavor% | ||
if %ERRORLEVEL% NEQ 0 exit /B %ERRORLEVEL% | ||
|
||
REM - Copy the detour dlls | ||
echo copy %DetoursBinaryDirectory%\x64\Monitor.Detours.dll %ClientCLIBinaryDirectory%\x64\Monitor.Detours.64.dll | ||
copy %DetoursBinaryDirectory%\x64\Monitor.Detours.dll %ClientCLIBinaryDirectory%\x64\Monitor.Detours.64.dll > nul | ||
echo copy %DetoursBinaryDirectory%\x86\Monitor.Detours.dll %ClientCLIBinaryDirectory%\x64\Monitor.Detours.32.dll | ||
copy %DetoursBinaryDirectory%\x86\Monitor.Detours.dll %ClientCLIBinaryDirectory%\x64\Monitor.Detours.32.dll > nul |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.