Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
shell: cmd
run: |
cl /EHsc /std:c++20 /permissive- /I. /DUNICODE /D_UNICODE /GS /sdl ^
cli_args_debugger.cpp log_manager.cpp path_info.cpp seh_wrapper.cpp qrcodegen.cpp ^
cli_args_debugger.cpp audio_capture.cpp log_manager.cpp path_info.cpp seh_wrapper.cpp qrcodegen.cpp ^
/Fe:build\cloud-streaming-args-debugger.exe ^
/Fo:obj\ ^
/link d3d11.lib d3dcompiler.lib d2d1.lib dwrite.lib ole32.lib avrt.lib user32.lib shell32.lib gdi32.lib propsys.lib winmm.lib psapi.lib
Expand Down
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_CURRENT_SOURCE_DIR}/build)
add_executable(cloud-streaming-args-debugger
WIN32 # Specify that the application uses WinMain instead of main
cli_args_debugger.cpp
audio_capture.cpp
log_manager.cpp
path_info.cpp
seh_wrapper.cpp
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Check out a preview of the application:

# Compile with MSVC
cl /EHsc /std:c++20 /permissive- /I. /DUNICODE /D_UNICODE ^
cli_args_debugger.cpp log_manager.cpp path_info.cpp seh_wrapper.cpp qrcodegen.cpp ^
cli_args_debugger.cpp audio_capture.cpp log_manager.cpp path_info.cpp seh_wrapper.cpp qrcodegen.cpp ^
/Fe:build/ArgumentDebugger.exe ^
/Fo:build/ ^
/link d3d11.lib d3dcompiler.lib d2d1.lib dwrite.lib ole32.lib avrt.lib user32.lib shell32.lib gdi32.lib propsys.lib
Expand Down
Loading
Loading