[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[vidalia-svn] r4058: Clarify that building with marble is much simpler on Linux t (vidalia/trunk)
Author: edmanm
Date: 2009-08-19 12:20:08 -0400 (Wed, 19 Aug 2009)
New Revision: 4058
Modified:
vidalia/trunk/README.marble
Log:
Clarify that building with marble is much simpler on Linux than on
OS X or Windows.
Modified: vidalia/trunk/README.marble
===================================================================
--- vidalia/trunk/README.marble 2009-08-19 01:08:29 UTC (rev 4057)
+++ vidalia/trunk/README.marble 2009-08-19 16:20:08 UTC (rev 4058)
@@ -39,14 +39,20 @@
3. Configure Vidalia with Marble support.
- cd vidalia (or wherever your Vidalia source tree lives)
- mkdir build && cd build
- cmake -DUSE_MARBLE=1 \
- -DMARBLE_INCLUDE_DIR=~/marble/src/lib \
- -DMARBLE_DATA_DIR=~/marble/data \
- -DMARBLE_LIBRARY_DIR=~/marble/build/src/lib \
- -DMARBLE_PLUGIN_DIR=~/marble/build/src/plugins ..
+ OS X & Windows:
+ cd vidalia (or wherever your Vidalia source tree lives)
+ mkdir build && cd build
+ cmake -DUSE_MARBLE=1 \
+ -DMARBLE_INCLUDE_DIR=~/marble/src/lib \
+ -DMARBLE_DATA_DIR=~/marble/data \
+ -DMARBLE_LIBRARY_DIR=~/marble/build/src/lib \
+ -DMARBLE_PLUGIN_DIR=~/marble/build/src/plugins ..
+ Everywhere else:
+ cd vidalia (or wherever your Vidalia source tree lives)
+ mkdir build && cd build
+ cmake -DUSE_MARBLE=1 ..
+
You will need to adjust each of the paths above according to where you checked
out and installed Marble in Steps 1 and 2.