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

README.md: Fix markdown #9

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,30 +14,30 @@ Compiling
In Linux and macOS, one can use GNU Make to compile the "bliss" executable,
as well as the static and shared libraries, with

make -f Makefile-manual
make -f Makefile-manual

If you are embedding bliss in a project that needs the automorphism group sizes
as GNU Multiple Precision Arithmetic Library integers,
compile with

make -f Makefile-manual gmp
make -f Makefile-manual gmp


On Linux and macOS with CMake installed, one can also use

cmake .
cmake --build .
cmake .
cmake --build .

To enable GNU GMP support, compile with

cmake -D USE_GMP=ON .
cmake --build .
cmake -D USE_GMP=ON .
cmake --build .


On Windows with Visual Studio and CMake, use

cmake .
cmake --build . --config Release
cmake .
cmake --build . --config Release


Examples
Expand Down