Skip to content

Commit

Permalink
Cleaned up project structure
Browse files Browse the repository at this point in the history
  • Loading branch information
nefarius committed Aug 29, 2022
1 parent 6aa6bd9 commit 55e1777
Show file tree
Hide file tree
Showing 19 changed files with 50 additions and 30 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -363,3 +363,4 @@ MigrationBackup/
FodyWeavers.xsd
/RC*
/RD*
/vcpkg_installed/
36 changes: 21 additions & 15 deletions NefConUtil.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,9 @@
<PropertyGroup Label="Vcpkg" Condition="'$(Configuration)|$(Platform)'=='Release (WinMain)|x64'">
<VcpkgUseStatic>true</VcpkgUseStatic>
</PropertyGroup>
<PropertyGroup Label="Vcpkg">
<VcpkgEnableManifest>true</VcpkgEnableManifest>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug (Console)|x64'">
<ClCompile>
<PrecompiledHeader>
Expand Down Expand Up @@ -511,25 +514,28 @@
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="Devcon.cpp" />
<ClCompile Include="easylogging++.cc" />
<ClCompile Include="NefConSetup.cpp" />
<ClCompile Include="NefConUtil.cpp" />
<ClCompile Include=".\src\Devcon.cpp" />
<ClCompile Include=".\src\easylogging++.cc" />
<ClCompile Include=".\src\NefConSetup.cpp" />
<ClCompile Include=".\src\NefConUtil.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include=".\src\argh.h" />
<ClInclude Include=".\src\Devcon.h" />
<ClInclude Include=".\src\easylogging++.h" />
<ClInclude Include=".\src\framework.h" />
<ClInclude Include=".\src\LibraryHelper.hpp" />
<ClInclude Include=".\src\NefConSetup.h" />
<ClInclude Include=".\src\NefConUtil.h" />
<ClInclude Include=".\src\colorwin.hpp" />
<ClInclude Include=".\src\resource.h" />
<ClInclude Include=".\src\UniUtil.h" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="argh.h" />
<ClInclude Include="Devcon.h" />
<ClInclude Include="easylogging++.h" />
<ClInclude Include="framework.h" />
<ClInclude Include="LibraryHelper.hpp" />
<ClInclude Include="NefConSetup.h" />
<ClInclude Include="NefConUtil.h" />
<ClInclude Include="colorwin.hpp" />
<ClInclude Include="resource.h" />
<ClInclude Include="UniUtil.h" />
<ResourceCompile Include=".\src\NefConUtil.rc" />
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="NefConUtil.rc" />
<None Include="vcpkg.json" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
Expand Down
33 changes: 18 additions & 15 deletions NefConUtil.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -15,54 +15,57 @@
</Filter>
</ItemGroup>
<ItemGroup>
<ClCompile Include="NefConUtil.cpp">
<ClCompile Include=".\src\NefConUtil.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="Devcon.cpp">
<ClCompile Include=".\src\Devcon.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="NefConSetup.cpp">
<ClCompile Include=".\src\NefConSetup.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="easylogging++.cc">
<ClCompile Include=".\src\easylogging++.cc">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="argh.h">
<ClInclude Include=".\src\argh.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="resource.h">
<ClInclude Include=".\src\resource.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="colorwin.hpp">
<ClInclude Include=".\src\colorwin.hpp">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="NefConUtil.h">
<ClInclude Include=".\src\NefConUtil.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="Devcon.h">
<ClInclude Include=".\src\Devcon.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="framework.h">
<ClInclude Include=".\src\framework.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="LibraryHelper.hpp">
<ClInclude Include=".\src\LibraryHelper.hpp">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="NefConSetup.h">
<ClInclude Include=".\src\NefConSetup.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="UniUtil.h">
<ClInclude Include=".\src\UniUtil.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="easylogging++.h">
<ClInclude Include=".\src\easylogging++.h">
<Filter>Header Files</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="NefConUtil.rc">
<ResourceCompile Include=".\src\NefConUtil.rc">
<Filter>Resource Files</Filter>
</ResourceCompile>
</ItemGroup>
<ItemGroup>
<None Include="vcpkg.json" />
</ItemGroup>
</Project>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 10 additions & 0 deletions vcpkg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"name": "nefcon",
"version": "1.0.0",
"description": "nefcon",
"license": "MIT",
"supports": "!(arm | uwp)",
"dependencies": [
"detours"
]
}

0 comments on commit 55e1777

Please sign in to comment.