Skip to content

Commit 1d916e2

Browse files
committed
fix: PowerShell problem in windows workflow execution
1 parent 0d9841b commit 1d916e2

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ jobs:
4343
4444
- name: Configure (Windows)
4545
if: runner.os == 'Windows'
46+
shell: bash
4647
run: |
4748
cmake -B build \
4849
-G "Visual Studio 17 2022" \

CMakeLists.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ project(libusbtingo
1919
LANGUAGES CXX
2020
)
2121

22+
# Includes and find modules
23+
list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)
24+
2225
# Build Settings
2326
include(cmake/BuildSettings.cmake)
2427

0 commit comments

Comments
 (0)