summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Schmelzer2011-11-03 16:13:20 +0100
committerSebastian Schmelzer2011-11-03 16:13:20 +0100
commitf567f05bdb9fc5a590a083d3d4ece405a48f425b (patch)
treeb568a37d494e323183e443a47e710a5844ee71d3
parentremove sessiontree (diff)
downloadlibChooser-f567f05bdb9fc5a590a083d3d4ece405a48f425b.tar.gz
libChooser-f567f05bdb9fc5a590a083d3d4ece405a48f425b.tar.xz
libChooser-f567f05bdb9fc5a590a083d3d4ece405a48f425b.zip
minor docu fix
-rw-r--r--INSTALL6
-rw-r--r--src/CMakeLists.txt1
2 files changed, 5 insertions, 2 deletions
diff --git a/INSTALL b/INSTALL
index 1b93888..b41b45d 100644
--- a/INSTALL
+++ b/INSTALL
@@ -5,6 +5,10 @@ To build libChooser from source follow these steps:
$ make
$ sudo make install
+On most systems it is highly recommended to add -DCMAKE_INSTALL_PREFIX=/usr to
+the cmake call, because in the default setup /usr/local/lib is not included in
+the LD Path.
+
List of configurable parameters with their default values:
DEBUG unset
@@ -14,4 +18,4 @@ List of configurable parameters with their default values:
LIBCHOOSER_X_SESSIONS_PATH "/usr/share/xsessions"
To change one of these parameters you have to append -D<VARIABLE>=<VALUE> when
-calling cmake. \ No newline at end of file
+calling cmake.
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 4248fc9..cf2d72d 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -36,7 +36,6 @@ set(LCHOOSER_CONFIG_HEADERS "Version.h" "Config.h")
add_library (Chooser_static STATIC ${LCHOOSER_SOURCES} ${LCHOOSER_MOC_SOURCES} ${LCHOOSER_HEADERS} ${LCHOOSER_MOC_HEADERS} ${LCHOOSER_CONFIG_HEADERS})
set_target_properties (Chooser_static PROPERTIES OUTPUT_NAME Chooser)
add_library (Chooser_shared SHARED ${LCHOOSER_SOURCES} ${LCHOOSER_MOC_SOURCES} ${LCHOOSER_HEADERS} ${LCHOOSER_MOC_HEADERS} ${LCHOOSER_CONFIG_HEADERS})
-target_link_libraries(Chooser_shared ${QT_LIBRARIES})
set_target_properties (Chooser_shared PROPERTIES OUTPUT_NAME Chooser)