diff options
author | flu0r1ne <flu0r1ne@flu0r1ne.net> | 2021-08-30 23:40:05 -0500 |
---|---|---|
committer | flu0r1ne <flu0r1ne@flu0r1ne.net> | 2021-08-30 23:40:05 -0500 |
commit | b0f3a6481f6cdb80c457051ce3fe982cb2df5da5 (patch) | |
tree | ca1c97c07107de588c154a43b76bb82597d4f7ea /adapters/gtest/templating.go | |
parent | f012f1c591e6b19ada9fe317af7959972f5da440 (diff) | |
parent | 582f4847fc388d8a64eb00143d4ffdd98a13aef0 (diff) | |
download | deb-planr-b0f3a6481f6cdb80c457051ce3fe982cb2df5da5.tar.xz deb-planr-b0f3a6481f6cdb80c457051ce3fe982cb2df5da5.zip |
Merge branch 'upstream' into ppa
Bump version to v0.0.3
Diffstat (limited to 'adapters/gtest/templating.go')
-rw-r--r-- | adapters/gtest/templating.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/adapters/gtest/templating.go b/adapters/gtest/templating.go index a78eaf8..c49f170 100644 --- a/adapters/gtest/templating.go +++ b/adapters/gtest/templating.go @@ -42,18 +42,18 @@ func genCmake(out string, units []cmakeUnit) { func unitTemplate() *template.Template { tmpl, err := template.New("gtest_unit").Parse(` add_executable( - {{.Cname}} - {{.File}} + "{{.Cname}}" + "{{.File}}" {{.Srcs}} ) target_link_libraries( - {{.Cname}} + "{{.Cname}}" gtest_main ) gtest_discover_tests( - {{.Cname}} + "{{.Cname}}" ) `) |