cpp-best-practices / gui_starter_template

A template CMake project to get you started with C++ and tooling

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

README.md calls for an in-source build

ddalcino opened this issue · comments

A recent commit (b0edb4b) added code that causes the build to fail if CMake detects an in-source build.

The ccmake directions in the README unambiguously tell you to run the configuration in the source directory, not the build directory. I tried following these directions, and they trigger a fatal error due to the in-source build. I think the documentation needs to be updated so that it doesn't guide new users directly into this fatal error.

Fixed in cac3864