diff --git a/BUILD.md b/BUILD.md index 1f90ea61..45a9db1c 100644 --- a/BUILD.md +++ b/BUILD.md @@ -262,6 +262,6 @@ Example usage: `cmake -S . -B build -DCMAKE_BUILD_TYPE=release -DENABLE_SDL=ON - | ENABLE_WAYLAND | Enable Wayland support | ON | ### macOS -| Flag | Description | Default | -|---------------------|------------------------------------------------------|---------| -| MACOS_BUNDLE | macOS executable will be an application bundle | OFF | +| Flag | Description | Default | +|--------------|------------------------------------------------|---------| +| MACOS_BUNDLE | MacOS executable will be an application bundle | OFF | diff --git a/CMakeLists.txt b/CMakeLists.txt index 4ed2d718..a00879fe 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -194,7 +194,7 @@ endif() if (ENABLE_METAL) include_directories(${CMAKE_SOURCE_DIR}/dependencies/metal-cpp) - add_definitions(-DENABLE_METAL=1) + add_definitions(-DENABLE_METAL=1) endif() if (ENABLE_DISCORD_RPC) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index f413fe9f..b7fd67fe 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -32,7 +32,7 @@ elseif(UNIX) add_compile_options(-Wno-ambiguous-reversed-operator) endif() - add_compile_options(-Wno-multichar -Wno-invalid-offsetof -Wno-switch -Wno-ignored-attributes -Wno-deprecated-enum-enum-conversion) + add_compile_options(-Wno-multichar -Wno-invalid-offsetof -Wno-switch -Wno-ignored-attributes -Wno-deprecated-enum-enum-conversion) endif() add_compile_definitions(VK_NO_PROTOTYPES)