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

Review installation-related snippets in Markdown docs #89

Open
jgvictores opened this issue Jul 21, 2020 · 1 comment
Open

Review installation-related snippets in Markdown docs #89

jgvictores opened this issue Jul 21, 2020 · 1 comment

Comments

@jgvictores
Copy link
Member

Spawned from roboticslab-uc3m/kinematics-dynamics#187 (comment):

cd's are so old-school, what if:

src=~/repos/kinematics-dynamics/bindings
build=$src/build
mkdir -p $build
cmake -H $src -B $build -DCREATE_PYTHON=ON
make -C $build -j$(nproc)  # compile
sudo make -C $build install
sudo ldconfig
@PeterBowman
Copy link
Member

Note the -H (source directory) and -B (build directory) have always been undocumented, internal arguments to cmake (SO). This changed in CMake 3.13 (ref1, ref2) in such a manner that -S (not -H) and -B are now officially documented, but the old -H changed its meaning to a new alias for --help.

@PeterBowman PeterBowman changed the title cd's are so old-school Review installation-related snippets in Markdown docs Jul 21, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants