Skip to content

Commit

Permalink
Merge branch 'main' into console_version
Browse files Browse the repository at this point in the history
  • Loading branch information
hangrydave committed Apr 29, 2024
2 parents f82d857 + 0d286ce commit 4278767
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: vcpkg
name: build

on: [push, pull_request]

Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:

- name: Zip up
if: startsWith(github.ref, 'refs/tags/')
run: Compress-Archive -Path "${{ github.workspace }}\x64\Release\IBTDriverWin.lib", "${{ github.workspace }}\x64\Release\IBTDriver.inf", "${{ github.workspace }}\x64\Release\IBTDriverPackage\ibtdriver.cat", "${{ github.workspace }}\x64\Release\IBTDriverPackage.cer", "${{ github.workspace }}\out\build\Windows-release\Release\InfraredBrickTower.exe" -DestinationPath "$env:WINDOWS_ZIP_PATH"
run: Compress-Archive -Path "${{ github.workspace }}\x64\Release\IBTDriverWin.lib", "${{ github.workspace }}\x64\Release\IBTDriver.inf", "${{ github.workspace }}\x64\Release\IBTDriverPackage\ibtdriver.cat", "${{ github.workspace }}\x64\Release\IBTDriverPackage.cer", "${{ github.workspace }}\out\build\Windows-release\Release\InfraredBrickTower.exe", "${{ github.workspace }}\out\build\Windows-release\Release\glfw3.dll" -DestinationPath "$env:WINDOWS_ZIP_PATH"

- name: Fix path
id: fix-path
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"cmake.configureSettings": {
"CMAKE_TOOLCHAIN_FILE": "${workspaceFolder}/scripts/vcpkg/scripts/buildsystems/vcpkg.cmake"
"CMAKE_TOOLCHAIN_FILE": "${workspaceFolder}/lib/vcpkg/scripts/buildsystems/vcpkg.cmake"
},
"dotnet.defaultSolution": "disable",
"files.associations": {
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@ Beyond supporting the USB tower on modern Windows operating systems, this projec

---

## Usage

There are builds available on the [Releases](https://github.com/hangrydave/InfraredBrickTower/releases) page for Windows and Linux.

Just so you are aware, if you try to run the Windows build, Windows Defender SmartScreen might prevent it from running. You'll have to click the "More Info" button and hit the button to run it anyway. This happens because my program does things with hardware drivers, and developers are meant to purchase a code signing certificate to validate their program and prevent SmartScreen from flagging it. The certificates are pretty expensive, so I'm not gonna buy one, but if you don't trust my code, feel free to look through the source code and compile it yourself using the instructions below.

---

## Building

### Part 1: Submodules
Expand Down

0 comments on commit 4278767

Please # to comment.