aboutsummaryrefslogtreecommitdiff
path: root/adapters/gtest/templating.go
diff options
context:
space:
mode:
Diffstat (limited to 'adapters/gtest/templating.go')
-rw-r--r--adapters/gtest/templating.go8
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}}"
)
`)