Reduce build time by moving Rainmeter.lib outside of Library project

This commit is contained in:
Birunthan Mohanathas 2013-05-09 17:53:24 +03:00
parent 17500a2dbd
commit 87f69dee55
4 changed files with 4 additions and 9 deletions

View File

@ -1,5 +1,7 @@
LIBRARY
EXPORTS
; Note: If new functions are added, the Rainmeter.lib files in Plugins\API\x32 and Plugins\API\x64
; must be replaced by the corresponding file in Library\x32\Release and Library\x64\Release.
RmReadString
RmReadFormula
RmPathToAbsolute

Binary file not shown.

Binary file not shown.

View File

@ -7,19 +7,12 @@
<ItemDefinitionGroup Condition="'$(Platform)'=='Win32'">
<Link>
<AdditionalDependencies>..\..\Library\x32\$(Configuration)\Rainmeter.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalDependencies>$(SolutionDir)Plugins\API\x32\Rainmeter.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Platform)'=='x64'">
<Link>
<AdditionalDependencies>..\..\Library\x64\$(Configuration)\Rainmeter.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalDependencies>$(SolutionDir)Plugins\API\x64\Rainmeter.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ProjectReference Include="..\..\Library\Library.vcxproj">
<Project>{be9d2400-7f1c-49d6-8498-5ce495491ad6}</Project>
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
</ProjectReference>
</ItemGroup>
</Project>