diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index ae1d373..e9c750c 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -27,7 +27,7 @@ jobs: - name: Build # Build your program with the given configuration - run: g++ test.cpp -o test -std=c++11 + run: g++ test_console.cpp -o test_console -std=c++11 #- name: Test #working-directory: ${{github.workspace}}/build diff --git a/.github/workflows/msbuild.yml b/.github/workflows/msbuild.yml index 63493ff..2551471 100644 --- a/.github/workflows/msbuild.yml +++ b/.github/workflows/msbuild.yml @@ -37,4 +37,4 @@ jobs: # Add additional options to the MSBuild command line here (like platform or verbosity level). # See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference # run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}} - run: g++ test.cpp -o test.exe -std=c++11 + run: g++ test_console.cpp -o test_console.exe -std=c++11