From 54021458bd807774e2db4e60891abfbeaa30bdf8 Mon Sep 17 00:00:00 2001 From: Demetri Van Sickle Date: Tue, 16 Aug 2022 01:49:44 -0700 Subject: [PATCH] Change build command in build script (#729) The script now uses the cmake build as to be compatible with all platforms as opposed to just platforms that supported gnu make. --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 31eaa2c7..e61c1cb4 100755 --- a/build.sh +++ b/build.sh @@ -5,8 +5,8 @@ cd build # Run cmake to generate make files cmake .. -# Run make to build the project. To build utilizing multiple cores, append `-j` and the amount of cores to utilize, for example `make -j8` -make +# To build utilizing multiple cores, append `-j` and the amount of cores to utilize, for example `cmake --build . --config Release -j8' +cmake --build . --config Release # Run migrations ./MasterServer -m