Change build command in build script ()

The script now uses the cmake build as to be compatible with all platforms as opposed to just platforms that supported gnu make.
This commit is contained in:
Demetri Van Sickle 2022-08-16 01:49:44 -07:00 committed by GitHub
parent 1e1b6aaa0b
commit 54021458bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -5,8 +5,8 @@ cd build
# Run cmake to generate make files # Run cmake to generate make files
cmake .. 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` # To build utilizing multiple cores, append `-j` and the amount of cores to utilize, for example `cmake --build . --config Release -j8'
make cmake --build . --config Release
# Run migrations # Run migrations
./MasterServer -m ./MasterServer -m