We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10fd6f9 commit 06d9d06Copy full SHA for 06d9d06
.github/workflows/dotnet.yml
@@ -20,6 +20,7 @@ jobs:
20
echo "C:\tools\mingw64\bin" >> $env:GITHUB_PATH
21
- name: Build C++ Project
22
run: |
23
- g++ -o output.exe -Wall -Wextra -O2 ./src/*.cpp
+ $cppFiles = Get-ChildItem -Path ./src -Filter *.cpp | ForEach-Object { $_.FullName }
24
+ g++ -o output.exe -Wall -Wextra -O2 $cppFiles
25
- name: Run Executable
26
run: ./output.exe
0 commit comments