diff options
| author | Harald Sitter <sitter@kde.org> | 2012-05-29 12:20:00 (GMT) |
|---|---|---|
| committer | Harald Sitter <sitter@kde.org> | 2012-05-29 12:20:00 (GMT) |
| commit | 10fce186a706e8ce124ed42b55f1577084134e59 (patch) | |
| tree | aa956a6d071a0e9c17dae03f5829f59c25475475 | |
| parent | 9a643a512c7277d48af5112c99771d9d1b10dac7 (diff) | |
fix qtwebkit linking
for some reason on my system qtwebkit is not in qt_libraries, so
explicitly link it. using explicit linking is nicer anyway.
| -rw-r--r-- | demos/browser/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/browser/CMakeLists.txt b/demos/browser/CMakeLists.txt index aa478c1..3c497a2 100644 --- a/demos/browser/CMakeLists.txt +++ b/demos/browser/CMakeLists.txt @@ -1,4 +1,4 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) qt4_automoc(mainwindow.cpp) add_executable(browser main.cpp mainwindow.cpp) -target_link_libraries(browser qzeitgeist ${QT_LIBRARIES}) +target_link_libraries(browser qzeitgeist ${QT_LIBRARIES} ${QT_QTWEBKIT_LIBRARY}) |
