From 14b5db46c031e4ef15fe2ac812e3a41182f953d1 Mon Sep 17 00:00:00 2001 From: Benji <64439681+benjitrosch@users.noreply.github.com> Date: Sat, 8 Jul 2023 10:48:38 -0400 Subject: [PATCH] Updated README Cmake relative paths to current directory --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 0101cb14..d7c2d8e8 100644 --- a/README.md +++ b/README.md @@ -92,12 +92,12 @@ To generate projects just run cmake replacing `YOUR-PROJECT-GENERATOR` with a pr mkdir build cd build - cmake -G YOUR-PROJECT-GENERATOR .. + cmake -G YOUR-PROJECT-GENERATOR . Note that by default cmake generates projects that will build static libraries. To generate projects that will build dynamic library use `BUILD_SHARED_LIBS` option like this: - cmake -G YOUR-PROJECT-GENERATOR -DBUILD_SHARED_LIBS=1 .. + cmake -G YOUR-PROJECT-GENERATOR -DBUILD_SHARED_LIBS=1 . After projects are generated use them as usual @@ -105,19 +105,19 @@ After projects are generated use them as usual Use proper generator for your Visual Studio version like: - cmake -G "Visual Studio 12 2013" .. + cmake -G "Visual Studio 12 2013" . #### Building on Mac OS X #### Use Xcode generator. To build framework run: - cmake -G Xcode -DBUILD_FRAMEWORK=1 .. + cmake -G Xcode -DBUILD_FRAMEWORK=1 . #### Building on Linux #### Use Makefile generator which is default one. - cmake .. + cmake . make ## Testing ##