mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
b7bc3c9d0d
This change allows Build.bat to define RmOutDirRoot to redirect output files to a different directory. This will be required for the new installer.
9 lines
455 B
XML
9 lines
455 B
XML
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup>
|
|
<!-- This is overridden by Build.bat during full build. -->
|
|
<RmOutDirRoot Condition=" '$(Platform)' == 'x86' ">$(SolutionDir)x32-$(Configuration)\</RmOutDirRoot>
|
|
<RmOutDirRoot Condition=" '$(Platform)' == 'x64' ">$(SolutionDir)x64-$(Configuration)\</RmOutDirRoot>
|
|
|
|
<OutputPath>$(RmOutDirRoot)Plugins\</OutputPath>
|
|
</PropertyGroup>
|
|
</Project> |