Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update linux instructions in README.md #127

Closed
wants to merge 1 commit into from

Conversation

dstathis
Copy link

fixes #126
Also improves instructions for Linux build

mkdir build
cd build
cmake ..
make

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Instead of this you can just do:

$ cmake -Bbuild -DCMAKE_BUILD_TYPE=Release
$ cmake --build build

This is better for two reasons:

  1. It's shorter. :)
  2. It doesn't assume you're using make over ninja.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have some fixes to README.md in #131 that does the above btw.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I rewrote those steps because they did not work on linux. Can't remember now why though

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's because the original steps assumes there's already a build directory present. :)

@dstathis dstathis closed this Jul 7, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Where did all the data files go?
2 participants