our cmake stuff creates the test target test_buzz, which usually results in
dune/foo/test/bar/bar_buzz.cc
for thematically grouped tests, to obtain a test_bar_buzz target. It would be nice if the cmake stuff took the directory structure into account in the generation of the target name, i.e.
dune/foo/test/bar/buzz.cc
becomes test__bar__buzz. Yes, I am friend of double _, think of:
Currently, given the filesystem structure
our cmake stuff creates the test target
test_buzz
, which usually results infor thematically grouped tests, to obtain a
test_bar_buzz
target. It would be nice if the cmake stuff took the directory structure into account in the generation of the target name, i.e.becomes
test__bar__buzz
. Yes, I am friend of double_
, think of:I would rather have the test target be named
as opposed to
since the latter looses the structural information.