Skip to content

Commit

Permalink
Make base address fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
cubuspl42 committed Nov 8, 2018
1 parent 3877429 commit af61d33
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
12 changes: 9 additions & 3 deletions CrazyHook/CrazyHook.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Express 2013 for Windows Desktop
VisualStudioVersion = 12.0.21005.1
# Visual Studio 15
VisualStudioVersion = 15.0.27130.2036
MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CrazyHook", "CrazyHook\CrazyHook.vcxproj", "{BD360DEF-38C1-495C-8912-9C3537832C49}"
ProjectSection(ProjectDependencies) = postProject
Expand All @@ -11,7 +11,10 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CrazyHook", "CrazyHook\Craz
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LuaJIT", "LuaJIT\LuaJIT.vcxproj", "{223F31B1-DD39-48E4-8982-F05A8DBE9531}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LFS", "LFS\LFS.vcxproj", "{2833B9C0-717D-4E11-98B2-4944AB787329}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "lfs", "LFS\LFS.vcxproj", "{2833B9C0-717D-4E11-98B2-4944AB787329}"
ProjectSection(ProjectDependencies) = postProject
{223F31B1-DD39-48E4-8982-F05A8DBE9531} = {223F31B1-DD39-48E4-8982-F05A8DBE9531}
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -35,4 +38,7 @@ Global
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {3F949A38-4951-4694-AC9E-0281936CE456}
EndGlobalSection
EndGlobal
6 changes: 6 additions & 0 deletions CrazyHook/CrazyHook/CrazyHook.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@
<GenerateDebugInformation>true</GenerateDebugInformation>
<AdditionalLibraryDirectories>$(SolutionDir)\LuaJIT\LuaJIT\src</AdditionalLibraryDirectories>
<AdditionalDependencies>lua51.lib;%(AdditionalDependencies)</AdditionalDependencies>
<BaseAddress>0x30000000</BaseAddress>
<FixedBaseAddress>true</FixedBaseAddress>
<RandomizedBaseAddress>false</RandomizedBaseAddress>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
Expand All @@ -85,6 +88,9 @@
<GenerateDebugInformation>true</GenerateDebugInformation>
<AdditionalLibraryDirectories>$(SolutionDir)\LuaJIT\LuaJIT\src</AdditionalLibraryDirectories>
<AdditionalDependencies>lua51.lib;%(AdditionalDependencies)</AdditionalDependencies>
<BaseAddress>0x30000000</BaseAddress>
<FixedBaseAddress>true</FixedBaseAddress>
<RandomizedBaseAddress>false</RandomizedBaseAddress>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
Expand Down

0 comments on commit af61d33

Please sign in to comment.