Skip to content
This repository has been archived by the owner on Mar 16, 2021. It is now read-only.

Building commands improvement #300

Open
kmturley opened this issue Jul 7, 2020 · 0 comments
Open

Building commands improvement #300

kmturley opened this issue Jul 7, 2020 · 0 comments

Comments

@kmturley
Copy link

kmturley commented Jul 7, 2020

Currently BUILDING.md contains the commands:

cmake -G "Unix Makefiles" .
make

However this then mixes build files with source files. It's generally best practice to create a build folder:

cmake \
  -G "Unix Makefiles" \
  -S . \
  -B ./build
make --directory ./build

Then all build files are kept nicely in one folder. You could also add the run command:

./build/main/mrswatson64 --help
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant