We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7887304 commit 7346457Copy full SHA for 7346457
.github/workflows/cmake.yml
@@ -27,7 +27,7 @@ jobs:
27
28
- name: Build
29
# Build your program with the given configuration
30
- run: g++ test.cpp -o test -std=c++11
+ run: g++ test_console.cpp -o test_console -std=c++11
31
32
#- name: Test
33
#working-directory: ${{github.workspace}}/build
.github/workflows/msbuild.yml
@@ -37,4 +37,4 @@ jobs:
37
# Add additional options to the MSBuild command line here (like platform or verbosity level).
38
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
39
# run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}}
40
- run: g++ test.cpp -o test.exe -std=c++11
+ run: g++ test_console.cpp -o test_console.exe -std=c++11
0 commit comments