cc_project_template_gn

A gn, ninja, and googletest-based C++ project template
git clone https://git.bracken.jp/cc_project_template_gn.git
Log | Files | Refs | Submodules | README | LICENSE

commit bbf19549bc460db2593d89f5632058c139a923be
parent ea2df65cd7ecc28aa782b7623f7bb9c3dac7d559
Author: Chris Bracken <chris@bracken.jp>
Date:   Thu, 19 Oct 2023 09:55:47 -0700

Correct executable target name in README

It was listed as src:foo but should be src:main.

Diffstat:
MREADME.md | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md @@ -55,5 +55,5 @@ To build and run the unit tests, run: To build and run the binary: - ninja -C out/debug src:foo + ninja -C out/debug src:main ./out/debug/main