-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/wangkaidev/easy-debug-view
- Loading branch information
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,25 @@ | ||
# easy-debug-view | ||
|
||
Simple and fast debug output viewer for Windows. | ||
|
||
It is a super lightweight but faster alternative of [debugview](https://learn.microsoft.com/en-us/sysinternals/downloads/debugview) for user mode debug output. | ||
|
||
The program is console based and all the output can be redirected to a file. | ||
|
||
```console | ||
easy-debug-view.exe>log.txt | ||
``` | ||
|
||
Administrator role is needed when running the program. | ||
|
||
## Build | ||
### Configure and build using CMake | ||
```console | ||
cmake -S . -B build | ||
cmake --build build --config RelWithDebInfo --target ALL_BUILD | ||
``` | ||
### Configure, build and package using CMake | ||
```console | ||
cmake -S . -B build | ||
cmake --build build --config RelWithDebInfo --target package | ||
``` |