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

Building commands improvement #300

@kmturley

Description

@kmturley

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions