diff --git a/README.md b/README.md index c7ade38596..3b0b3e7e6f 100644 --- a/README.md +++ b/README.md @@ -251,7 +251,7 @@ sudo apt-get -y install git cmake python-dev build-essential automake autoconf l ccmake ../engine # (configure/edit options to taste in ccmake, press 'c' to save the selected options # and press 'g' to update the build configuration files used by the make build tool) - make -jN # (where N is the number of available CPU threads/cores on your system) + cmake --build . -jN # (where N is the number of available CPU threads/cores on your system) mkdir ../bin && cp vegastrike ../bin/ && cp setup/vssetup ../bin/ && cd .. ``` @@ -260,13 +260,24 @@ sudo apt-get -y install git cmake python-dev build-essential automake autoconf l ```bash mkdir build & cd build cmake ../engine - make -jN # (where N is the number of available CPU threads/cores on your system) + cmake --build . -jN # (where N is the number of available CPU threads/cores on your system) mkdir ../bin && cp vegastrike ../bin/ && cp setup/vssetup ../bin/ && cd .. ``` + + *TIPS:* + To enable/disable compile-time options with cmake, use `cmake -D