Skip to content

Commit

Permalink
Small changes
Browse files Browse the repository at this point in the history
Changes to the readme file and removal of useless comments.
  • Loading branch information
JerimiahOfficial committed Sep 8, 2024
1 parent 0148b70 commit 4c04850
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 10 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,6 @@ jobs:
- name: Build release
run: cmake --build build --config Release

# - name: Test
# working-directory: ${{ github.workspace }}/build
# run: ctest --build-config Release

- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
Expand Down Expand Up @@ -72,10 +68,6 @@ jobs:
- name: Build release
run: cmake --build build --config Release

# - name: Test
# working-directory: ${{ github.workspace }}/build
# run: ctest --build-config Release

- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
Expand Down
19 changes: 17 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,20 @@ Tested to work on both windows and linux.

[Vulkan](https://www.vulkan.org/) is a cross-platform industry standard enabling developers to target a wide range of devices with the same graphics API.

#### References
[Roboto](https://fonts.google.com/specimen/Roboto) a font used inside of this project.
### Building from source

#### Windows
```
cmake -B build -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER=g++ -DCMAKE_C_COMPILER=gcc
cmake --build build --config Release
```
#### Linux
```
cmake -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER=g++ -DCMAKE_C_COMPILER=gcc
cmake --build build --config Release
```

### Credits
[Roboto](https://github.com/googlefonts/roboto) font by Christian Robertson (Apache-2.0 license).

0 comments on commit 4c04850

Please sign in to comment.