diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2017-03-24 18:38:57 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2017-03-27 11:25:22 +0530 |
commit | 58131c05153f947c37362dba4248bdaca7ebcbfa (patch) | |
tree | 3f0c2e94cee7ef1e3becb1a9d631135fe65a48a4 | |
parent | ee3010e767ee3917e54fcd30144323b2fd3d05e0 (diff) | |
download | meson-58131c05153f947c37362dba4248bdaca7ebcbfa.zip meson-58131c05153f947c37362dba4248bdaca7ebcbfa.tar.gz meson-58131c05153f947c37362dba4248bdaca7ebcbfa.tar.bz2 |
tests: Fix typo in unit test code
This project wasn't actually configured, so it was never noticed.
-rw-r--r-- | test cases/unit/5 compiler detection/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/unit/5 compiler detection/meson.build b/test cases/unit/5 compiler detection/meson.build index 5491c64..8b47bd4 100644 --- a/test cases/unit/5 compiler detection/meson.build +++ b/test cases/unit/5 compiler detection/meson.build @@ -3,6 +3,6 @@ project('trivial test', meson_version : '>=0.27.0') executable('trivialc', 'trivial.c') -executable('trivialcpp', 'trivial.cpp') +executable('trivialcpp', 'trivial.cc') executable('trivialobjc', 'trivial.m') executable('trivialobjcpp', 'trivial.mm') |