rename sys/winnt to sys/windows move vs (visual studio) folder out of win/win32 and into sys/windows rename include/ntconf.h to include/windconf.h rename winnt.c to windsys.c place visual studio projects into individual subfolders. This will hopefully resolve GitHub issue #484 as well.
18 lines
817 B
XML
18 lines
817 B
XML
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Import Project="..\dirs.props"/>
|
|
<Import Project="$(vsDir)files.props"/>
|
|
<Target Name="Build"
|
|
Inputs="$(ToolsDir)dlb.exe;@(DlbList);$(SysWindDir)porthelp"
|
|
Outputs="$(BinDir)nhdat$(VERSION_MAJOR)$(VERSION_MINOR)$(PATCHLEVEL)">
|
|
<MakeDir Directories="$(BinDir)"/>
|
|
<Copy SourceFiles="$(SysWindDir)porthelp" DestinationFolder="$(DatDir)"/>
|
|
<WriteLinesToFile File="$(DatDir)dlb.lst" Lines="@(DlbList->'%(filename)%(extension)')" Overwrite="true"/>
|
|
<Exec Command=""$(ToolsDir)dlb.exe" cIf dlb.lst "$(BinDir)nhdat"" WorkingDirectory="$(DatDir)"/>
|
|
<Delete Files="$(DatDir)porthelp"/>
|
|
|
|
</Target>
|
|
<Target Name="Clean">
|
|
<Delete Files="$(BinDir)nhdat$(VERSION_MAJOR)$(VERSION_MINOR)$(PATCHLEVEL)"/>
|
|
</Target>
|
|
</Project>
|