1ArchaeoLines plugin for Stellarium
2==================================
3
4A tool to show the most relevant directions discussed in archeoastronomical alignment studies.
5
6TODO
7====
8
9+ implement it...
10+
11
12BUILDING THE PLUGIN
13===================
14
15Please note, these instructions are only directly applicable to Linux.
16Windows and OSX targets will probably require modification of the
17CMakeLists.txt file.
18
190.  Install and build the SVN version of Stellarium as per the
20instructions on the Stellarium wiki:
21
22  http://stellarium.org/wiki/index.php/Compilation_on_Linux
23
24NOTE: that the main program build must be set so that the libStelMain.so
25file will be generated.  This is achieved by setting the
26GENERATE_STELMAINLIB variable in the main Stellarium CMakeLists.txt file
27to 1, like so:
28
29  SET(GENERATE_STELMAINLIB 1)
30
311.  Set the environment variable STELROOT to the root of the Stellarium
32source tree.  The Stellarium build directory is expected to be:
33
34  $STELROOT/builds/unix
35
362.  Create a sub-directory builds/unix and change into that directory.
37
383.  Run:
39
40  cmake ../..
41  make
42  make install
43
44If all goes well, the relevant files should be built and copied to your
45~/.stellarium/modules directory.
46
47
48