From d6c758047cce9eefc287daf29fdb33238229500b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20K=C3=B6ppe?= Date: Mon, 14 Nov 2022 15:02:52 -0800 Subject: [PATCH] README.md: Fix markdown --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index e02e93d..7e7da94 100644 --- a/README.md +++ b/README.md @@ -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