-
Notifications
You must be signed in to change notification settings - Fork 464
macOS
Eran Ifrah edited this page Dec 3, 2018
·
1 revision
- Install
cmake
, you can use Homebrew to install it - Install
git
client, as before, you can use Homebrew to install it - Install
Xcode
from Apple, and then ** Install the Command Line Tools:open Xcode -> Preferences -> Downloads and install the command line tools
The build instructions are similar to the Linux ones:
cd /Users/eran/devl
git clone https://github.com/eranif/wxWidgets.git
cd /Users/eran/devl/wxWidgets
git submodule init
git submodule update
mkdir build-release
cd build-release
../configure --enable-shared --enable-monolithic --with-osx_cocoa CXX='clang++ -std=c++11 -stdlib=libc++' CC=clang --with-macosx-version-min=10.8 --disable-debug --disable-mediactrl
make -j8 && sudo make install
Clone CodeLite sources and run cmake
:
cd /Users/eran/devl
git clone https://github.com/eranif/codelite.git
cd /Users/eran/devl/codelite
mkdir build-release
cd build-release
cmake .. -DCMAKE_BUILD_TYPE=Release
make -j8
make install # this will create the CodeLite.app/ bundle
open CodeLite.app/ # start CodeLite