Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rommmmaha committed Jun 5, 2024
1 parent 8ed3155 commit 5a9b07a
Show file tree
Hide file tree
Showing 8 changed files with 214 additions and 106 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: build
path: bin/client.exe
retention-days: 7
path: bin/
retention-days: 3
compression-level: 0
7 changes: 4 additions & 3 deletions client/client.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -42,24 +42,25 @@
<PreprocessorDefinitions>SFML_STATIC;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
<AdditionalIncludeDirectories>$(SolutionDir)SFML\include</AdditionalIncludeDirectories>
<LanguageStandard>stdcpp20</LanguageStandard>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<GenerateDebugInformation>true</GenerateDebugInformation>
<AdditionalLibraryDirectories>$(SolutionDir)SFML\lib</AdditionalLibraryDirectories>
<AdditionalDependencies>winmm.lib;sfml-system-s.lib;opengl32.lib;gdi32.lib;sfml-window-s.lib;freetype.lib;sfml-graphics-s.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalDependencies>sfml-graphics-s.lib;sfml-window-s.lib;sfml-system-s.lib;sfml-audio-s.lib;opengl32.lib;freetype.lib;winmm.lib;gdi32.lib;openal32.lib;flac.lib;vorbisenc.lib;vorbisfile.lib;vorbis.lib;ogg.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="main.cpp" />
<ClCompile Include="_game.cpp" />
<ClCompile Include="game.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="myfunc.hpp" />
<ClInclude Include="object.hpp" />
<ClInclude Include="_game.hpp" />
<ClInclude Include="game.hpp" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
Expand Down
4 changes: 2 additions & 2 deletions client/client.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
<ClCompile Include="main.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="_game.cpp">
<ClCompile Include="game.cpp">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="_game.hpp">
<ClInclude Include="game.hpp">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="object.hpp">
Expand Down
Loading

0 comments on commit 5a9b07a

Please sign in to comment.