Browse Source

Added Linux Mint Debian Edition in install.md, and added missing include (in case boost::log is disabled in the future)

merge-requests/365/head
eidheim 10 years ago
parent
commit
4e6ea3416c
  1. 4
      docs/install.md
  2. 1
      src/source.h

4
docs/install.md

@ -3,7 +3,7 @@
- Installation - Installation
- Linux - Linux
- [Debian testing/Linux Mint/Ubuntu](#debian-testinglinux-mintubuntu) - [Debian testing/Linux Mint/Ubuntu](#debian-testinglinux-mintubuntu)
- [Debian stable](#debian-stable) - [Debian stable/Linux Mint Debian Edition](#debian-stablelinux-mint-debian-edition)
- [Arch Linux](#arch-linux) - [Arch Linux](#arch-linux)
- OS X - OS X
- [Homebrew](#os-x-with-homebrew-httpbrewsh) - [Homebrew](#os-x-with-homebrew-httpbrewsh)
@ -27,7 +27,7 @@ make
sudo make install sudo make install
``` ```
## Debian stable ## Debian stable/Linux Mint Debian Edition
Install dependencies: Install dependencies:
```sh ```sh
sudo apt-get install git cmake make g++ libclang-3.5-dev liblldb-3.5-dev clang-format-3.5 pkg-config libboost-system-dev libboost-thread-dev libboost-filesystem-dev libboost-log-dev libboost-regex-dev libgtksourceviewmm-3.0-dev aspell-en libaspell-dev sudo apt-get install git cmake make g++ libclang-3.5-dev liblldb-3.5-dev clang-format-3.5 pkg-config libboost-system-dev libboost-thread-dev libboost-filesystem-dev libboost-log-dev libboost-regex-dev libgtksourceviewmm-3.0-dev aspell-en libaspell-dev

1
src/source.h

@ -2,6 +2,7 @@
#define JUCI_SOURCE_H_ #define JUCI_SOURCE_H_
#include <aspell.h> #include <aspell.h>
#include <boost/property_tree/xml_parser.hpp> #include <boost/property_tree/xml_parser.hpp>
#include <boost/filesystem.hpp>
#include <gtksourceviewmm.h> #include <gtksourceviewmm.h>
#include <string> #include <string>
#include <unordered_map> #include <unordered_map>

Loading…
Cancel
Save