Update readme and apple build

This commit is contained in:
Linus Probert 2018-05-13 23:46:27 +02:00
parent 524e10ac8f
commit 4e5e3e515c
2 changed files with 3 additions and 3 deletions

View File

@ -112,7 +112,7 @@ if (NOT MSVC)
-Wmissing-prototypes -Wmissing-prototypes
-Wconversion -Wno-sign-conversion -Wconversion -Wno-sign-conversion
) )
if (NOT CLANG) if (NOT APPLE)
add_definitions(-static -static-libgcc -static-libstdc++) add_definitions(-static -static-libgcc -static-libstdc++)
endif () endif ()
endif (NOT MSVC) endif (NOT MSVC)

View File

@ -33,8 +33,8 @@ Optionally you can also install **cppcheck** and **physfs**
Once that is done run the following: Once that is done run the following:
```bash ```bash
mkdir build mkdir _build
cd build cd _build
cmake -DCMAKE_BUILD_TYPE=Debug .. # Build type flag is optional cmake -DCMAKE_BUILD_TYPE=Debug .. # Build type flag is optional
make make
``` ```