forked from master131/BlockTheSpot
-
Notifications
You must be signed in to change notification settings - Fork 713
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 64 bit patch * Fix build issues * minor changes * Revert "minor changes" This reverts commit 1b5a057. * Revert "Fix build issues" This reverts commit 1d1b866. * fix code. * Update Modify.cpp * disable exception handling * ResolveNuGetPackages * Update BlockTheSpot.vcxproj * Update BlockTheSpot.vcxproj * Update BlockTheSpot.vcxproj * fix appveyor compile * full x64 --------- Co-authored-by: Khunpon Pond <[email protected]> x64 code by @ejaxh without you this won't possible!
- Loading branch information
Showing
52 changed files
with
3,417 additions
and
12,313 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio Version 17 | ||
VisualStudioVersion = 17.6.33829.357 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BlockTheSpot", "src\BlockTheSpot.vcxproj", "{DCC156A5-5810-4C3B-B95D-A168CEAA3629}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|x64 = Debug|x64 | ||
Release|x64 = Release|x64 | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{DCC156A5-5810-4C3B-B95D-A168CEAA3629}.Debug|x64.ActiveCfg = Debug|x64 | ||
{DCC156A5-5810-4C3B-B95D-A168CEAA3629}.Debug|x64.Build.0 = Debug|x64 | ||
{DCC156A5-5810-4C3B-B95D-A168CEAA3629}.Release|x64.ActiveCfg = Release|x64 | ||
{DCC156A5-5810-4C3B-B95D-A168CEAA3629}.Release|x64.Build.0 = Release|x64 | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
SolutionGuid = {AA3D23C9-D1E4-4F39-A15C-42B6F2FD8E76} | ||
EndGlobalSection | ||
EndGlobal |
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,6 +1,6 @@ | ||
[Config] | ||
Block_Ads=1 | ||
Block_Banner=1 | ||
Enable_Developer=1 | ||
;Log system | ||
Log = 0 | ||
BlockAds = 1 | ||
Developer = 1 | ||
Banner = 1 | ||
Enable_Log=0 |
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" > | ||
<ItemDefinitionGroup> | ||
<ClCompile> | ||
<AdditionalIncludeDirectories>$(MSBuildThisFileDirectory)..\..\lib\native\include\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
</ClCompile> | ||
<Link> | ||
<AdditionalLibraryDirectories Condition="'$(PlatformTarget)'=='x64'">$(MSBuildThisFileDirectory)..\..\lib\native\libs\x64;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> | ||
<AdditionalLibraryDirectories Condition="'$(PlatformTarget)'=='x86'">$(MSBuildThisFileDirectory)..\..\lib\native\libs\x86;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> | ||
<AdditionalDependencies>detours.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||
</Link> | ||
</ItemDefinitionGroup> | ||
</Project> |
Oops, something went wrong.