BuildingOnMac: Formatting tweaks
authorWuzzy
Wed, 18 Sep 2019 00:31:55 +0100
changeset 1976 c764a1bf5795
parent 1975 05c417d4d891
child 1977 12b6619171bb
BuildingOnMac: Formatting tweaks
BuildingOnMac.wiki
--- a/BuildingOnMac.wiki	Wed Sep 18 01:28:55 2019 +0200
+++ b/BuildingOnMac.wiki	Wed Sep 18 00:31:55 2019 +0100
@@ -10,7 +10,7 @@
 
 === Required Build Dependencies ===
 
-Homebrew (https://brew.sh/) can be used to gather many of these dependencies, but is not required. All can be found as installers, frameworks, or built manually without Homebrew.
+Homebrew ([https://brew.sh/]) can be used to gather many of these dependencies, but is not required. All can be found as installers, frameworks, or built manually without Homebrew.
 
 Unless otherwise specified, latest versions of the following dependencies can be used.
 
@@ -22,7 +22,7 @@
 
 ==== Libraries ====
 
-Libraries can be dynamically linked libraries (.dylib) or Apple frameworks (.framework).  All must be on the system library or framework paths for CMake to find them. Frameworks can be put in your home directory at `~/Library/Frameworks`
+Libraries can be dynamically linked libraries (`.dylib`) or Apple frameworks (`.framework`). All must be on the system library or framework paths for CMake to find them. Frameworks can be put in your home directory at `~/Library/Frameworks`.
 
   * Qt 5.9.x or later (unified installer works)
   * SDL2
@@ -92,7 +92,7 @@
 
 CMake is used to manage the build process, and is run with different flags depending on which optional dependencies you have elected to install.
 
-Take note of where QT is installed; it is a required build flag (see below).
+Take note of where Qt is installed; it is a required build flag (see below).
 
 Steps to build:
 
@@ -101,7 +101,7 @@
 # `make -j2`
 # `make install`
 
-A Hedgewars.app file will be created in the same folder you ran CMake.
+A `Hedgewars.app` file will be created in the same folder you ran CMake.
 
 To build the DMG, also run:
 
@@ -111,6 +111,6 @@
 
 # To build a debug build, use the flag `-DCMAKE_BUILD_TYPE=Debug` instead of the `Release` one
 # To build a minimum-features build, use the additional flags of `-DNOSERVER=1`, `-DNOVIDEOREC=1`, and `-DNOAUTOUPDATE=1`, for disabling of hedgewars-server, video recording, and Sparkle autoupdating, respectively.
-# The build uses CMake BundleUtilities which automatically deploys all libraries and dependencies  into the .app, and repairs the RPATH of each library and binary as needed.  If there is a missing dependency, the `make install` portion of the build will fail. The fix is usually to find the correct .framework and put in on library path, then run `make dmg` again.
+# The build uses CMake BundleUtilities which automatically deploys all libraries and dependencies  into the `.app`, and repairs the `RPATH` of each library and binary as needed. If there is a missing dependency, the `make install` portion of the build will fail. The fix is usually to find the correct `.framework` and put in on library path, then run `make dmg` again.
 
 Enjoy!