diff options
author | George Hazan <ghazan@miranda.im> | 2019-03-22 17:17:21 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-03-22 17:17:21 +0300 |
commit | 03af559a0fbe59db41801d0a50370230b801a921 (patch) | |
tree | 44fde72f2f7ce6473635ea7daaf3a982d13aa926 /build | |
parent | f6129d9855bcd96d6258c2de4a75f764e0455993 (diff) |
fixed base addresses removed
Diffstat (limited to 'build')
-rw-r--r-- | build/vc.common/app.props | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/build/vc.common/app.props b/build/vc.common/app.props index adc600eade..7d502ac1e6 100644 --- a/build/vc.common/app.props +++ b/build/vc.common/app.props @@ -26,4 +26,9 @@ <OutDir Condition="'$(Platform)'=='x64'">$(SolutionDir)$(Configuration)64\</OutDir>
</PropertyGroup>
<Import Project="common.props"/>
+ <ItemDefinitionGroup Condition="'$(Configuration)'=='Release'">
+ <Link>
+ <FixedBaseAddress>false</FixedBaseAddress>
+ </Link>
+ </ItemDefinitionGroup>
</Project>
|