You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

3.0 KiB

juCi++ Installation Guide

Debian/Ubuntu 15

Install dependencies:

sudo apt-get install git cmake make g++ libclang-dev pkg-config libboost-system-dev libboost-thread-dev libboost-filesystem-dev libboost-log-dev libgtkmm-3.0-dev libgtksourceviewmm-3.0-dev aspell-en libaspell-dev

Get juCi++ source, compile and install:

git clone --recursive http://github.com/cppit/jucipp
cd jucipp
cmake .
make
sudo make install

To use clang-format for auto-indentation of C++ files (replace [version] with an available clang-format version):

sudo apt-get install clang-format-[version]
sudo ln -s /usr/bin/clang-format-[version] /usr/local/bin/clang-format

Ubuntu 14/Linux Mint 17

Install dependencies:

sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install g++-4.9
sudo apt-get remove g++-4.8
sudo apt-get install git cmake make g++ libclang-3.6-dev pkg-config libboost-system1.55-dev libboost-thread1.55-dev libboost-filesystem1.55-dev libboost-log1.55-dev libgtkmm-3.0-dev libgtksourceviewmm-3.0-dev aspell-en libaspell-dev

Get juCi++ source, compile and install:

git clone --recursive http://github.com/cppit/jucipp
cd jucipp
cmake .
make
sudo make install

To use clang-format for auto-indentation of C++ files (replace [version] with an available clang-format version):

sudo apt-get install clang-format-[version]
sudo ln -s /usr/bin/clang-format-[version] /usr/local/bin/clang-format

OS X with Homebrew (http://brew.sh/)

Install dependencies (installing llvm may take some time):

brew install cmake --with-clang llvm pkg-config boost gtkmm3 homebrew/x11/gtksourceviewmm3 aspell clang-format

Get juCi++ source, compile and install:

git clone --recursive https://github.com/cppit/jucipp
cd jucipp
cmake .
make
make install

##Windows with MSYS2 (https://msys2.github.io/) Install dependencies (replace x86_64 with i686 for 32-bit MSYS2 installs):

pacman -S git mingw-w64-x86_64-cmake make mingw-w64-x86_64-toolchain mingw-w64-x86_64-clang mingw-w64-x86_64-gtkmm3 mingw-w64-x86_64-gtksourceviewmm3 mingw-w64-x86_64-boost mingw-w64-x86_64-aspell mingw-w64-x86_64-aspell-en

Get juCi++ source, compile and install (replace mingw64 with mingw32 for 32-bit MSYS2 installs):

git clone --recursive https://github.com/cppit/jucipp
cd jucipp
cmake -G"MSYS Makefiles" -DCMAKE_INSTALL_PREFIX=/mingw64 .
make
make install

Run

juci