Skip to content

Commit

Permalink
Common: Add platform-specific headers.
Browse files Browse the repository at this point in the history
  • Loading branch information
nitrocaster committed Jan 17, 2016
1 parent a0eb905 commit 6d41693
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Common/Common.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,8 @@
<ClInclude Include="object_loader.h" />
<ClInclude Include="object_saver.h" />
<ClInclude Include="object_type_traits.h" />
<ClInclude Include="PlatformLinux.hpp" />
<ClInclude Include="PlatformWindows.hpp" />
<ClInclude Include="Util.hpp" />
<ClInclude Include="_d3d_extensions.h" />
</ItemGroup>
Expand Down
9 changes: 9 additions & 0 deletions src/Common/Common.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,20 @@
<ClInclude Include="NvMender2003\remove_isolated_verts.h">
<Filter>NvMender2003</Filter>
</ClInclude>
<ClInclude Include="PlatformWindows.hpp">
<Filter>Platform</Filter>
</ClInclude>
<ClInclude Include="PlatformLinux.hpp">
<Filter>Platform</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<Filter Include="NvMender2003">
<UniqueIdentifier>{4a2b53ad-98a9-4338-99a6-b5ea4123d5bf}</UniqueIdentifier>
</Filter>
<Filter Include="Platform">
<UniqueIdentifier>{05b6dbf9-e387-495f-9d92-e2b8ecc350fa}</UniqueIdentifier>
</Filter>
</ItemGroup>
<ItemGroup>
<ClCompile Include="NvMender2003\NVMeshMender.cpp">
Expand Down
2 changes: 2 additions & 0 deletions src/Common/PlatformLinux.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#pragma once
#include "Common/Config.hpp"
2 changes: 2 additions & 0 deletions src/Common/PlatformWindows.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#pragma once
#include "Common/Config.hpp"

0 comments on commit 6d41693

Please sign in to comment.