unittest support
[geanyprj.git] / INSTALL
blob6960fccf5d4dcf07da3d04535dfbf2536e7915d5
1 These installation instructions are written for a Linux system.
3 At the time of this writing, building the plugin requires a recent SVN checkout
4 of the Geany sources (r2104+).
6 In order to build the plugin, the makefile needs to know where it can find
7 the Geany header files - you can do this by calling configure with with-geany-src
8 option for instance:
10  % configure --with-geany-src=/path/to/geany
11  % make
12  % make install
14 ( By default configure will look for the relative path ../geany/
15   so as long as /geanyprg/ and /geany/ are in the same parent directory,
16   you will not need to specify the location. )
18 The "make install" command copies geanyprj.so to your personal ~/.geany/plugins/
19 directory, so you don't need to be root to install. ( If you are logged in as
20 root when you install, it will only put the files in /root/.geany/plugins/
21 which might not be what you expected! )
23 If you actually do want everyone on the system to be able to access to the
24 same copy of the plugin, you can manually copy the plugin to the system-wide
25 plugins directory.
26 ( That would probably be /usr/local/lib/geany/ or maybe /usr/lib/geany/ )
28 There is no "make uninstall" target, so if you want to remove the plugin,
29 just delete the "geanyprj.so" from your plugins directory.