Skip to content
This repository was archived by the owner on Jun 25, 2020. It is now read-only.

Commit b285d3d

Browse files
Jørgen Lien Sellægzalox
Jørgen Lien Sellæg
authored andcommitted
feature: wip
1 parent 16cf198 commit b285d3d

File tree

8 files changed

+480
-173
lines changed

8 files changed

+480
-173
lines changed

docs/install.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ make install
138138

139139
Install dependencies (replace `x86_64` with `i686` for 32-bit MSYS2 installs):
140140
```sh
141-
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 mingw-w64-x86_64-libgit2 mingw-w64-x86_64-universal-ctags-git
141+
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 mingw-w64-x86_64-gobject-introspection mingw-w64-x86_64-pygobject-devel mingw-w64-x86_64-python3-gobject mingw-w64-x86_64-libgit2 mingw-w64-x86_64-universal-ctags-git
142142
```
143143

144144
Note that juCi++ must be built and run in a MinGW Shell (for instance MinGW-w64 Win64 Shell).

pybind11

Submodule pybind11 updated 184 files

src/config.cc

+3-3
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ void Config::find_or_create_config_files() {
5656
auto config_json = config_dir/"config.json";
5757

5858
boost::filesystem::create_directories(config_dir); // io exp captured by calling method
59-
boost::filesystem::create_directories(home/"plugins");
59+
boost::filesystem::create_directories(home_juci_path/"plugins");
6060

6161
if (!boost::filesystem::exists(config_json))
6262
filesystem::write(config_json, default_config_file);
@@ -118,8 +118,8 @@ void Config::retrieve_config() {
118118
}
119119
}
120120
#endif
121-
python.plugin_directory=cfg.get<std::string>("python.plugin_directory",(home/"plugins").string());
122-
python.site_packages=cfg.get<std::string>("python.site_packages","/usr/lib/python3.5/site-packages");
121+
python.plugin_directory=cfg.get<std::string>("python.plugin_directory",(home_juci_path/"plugins").string());
122+
python.site_packages=cfg.get<std::string>("python.site_packages","");
123123
}
124124

125125
bool Config::add_missing_nodes(const boost::property_tree::ptree &default_cfg, std::string parent_path) {

0 commit comments

Comments
 (0)