Skip to content

Commit

Permalink
aaa
Browse files Browse the repository at this point in the history
  • Loading branch information
JustDoom authored Mar 23, 2024
1 parent 9fcff6f commit 62e487f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,15 @@ jobs:
run: |
mkdir build && cd build
cmake -DBUILD_SHARED_LIBS=OFF ..
cmake --build .
cmake --build . --config Release
- name: Upload executable
uses: actions/upload-artifact@v2
with:
name: windows-executable
path: |
build/src/Debug/*.exe
build/src/Debug/*.dll
build/src/Release/*.exe
build/src/Release/*.dll
# - name: Configure build environment for target architecture
# run: |
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ add_executable(8ChocChip main.cpp
Renderer.h
Cpu.cpp
Cpu.h)
target_link_libraries(8ChocChip PRIVATE sfml-graphics sfml-audio)
target_link_libraries(8ChocChip PRIVATE sfml-graphics sfml-audio sfml-window sfml-system)

# Copy DLLs needed for runtime on Windows
if(WIN32)
Expand Down

0 comments on commit 62e487f

Please sign in to comment.