Skip to content

Commit

Permalink
Merge pull request #30 from codefreak/fix/cpp-evaluation
Browse files Browse the repository at this point in the history
Use the correct CMake source argument
  • Loading branch information
HenningCash authored Mar 31, 2021
2 parents 5e3abb3 + e205404 commit 33062d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/cpp/codefreak.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ evaluation:
project-path: /code
commands:
- "rm -rf build # Remove possible build files because there might be conflicting settings (i.e. the compiler path) from external builds"
- cmake -s . -B build -DCMAKE_BUILD_TYPE=Debug -G "Unix Makefiles"
- cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug -G "Unix Makefiles"
- make -C build ExampleProject_tst
- build/test/ExampleProject_tst --gtest_output=xml:test-results/TEST-report.xml
title: Unit Tests
Expand Down

0 comments on commit 33062d6

Please sign in to comment.