diff options
| author | Jeff Mitchell <[email protected]> | 2008-03-10 17:33:30 +0000 |
|---|---|---|
| committer | Jeff Mitchell <[email protected]> | 2008-03-10 17:33:30 +0000 |
| commit | e8f247159e1fbacfd74dbce6c81f4e4855fad293 (patch) | |
| tree | 9a842073908b4e2aef4730766b7b433ef16de250 /src/CMakeLists.txt | |
| parent | acb27185b73bfd80368e10d33e5a1fcdc57a9102 (diff) | |
Don't try to show the terminal in dolphin when in Windows
svn path=/trunk/KDE/kdebase/apps/; revision=784126
Diffstat (limited to 'src/CMakeLists.txt')
| -rw-r--r-- | src/CMakeLists.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 3f74958f2..de8b6f2e0 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -76,7 +76,6 @@ install(TARGETS dolphinpart DESTINATION ${PLUGIN_INSTALL_DIR} ) install(FILES dolphinpart.rc DESTINATION ${DATA_INSTALL_DIR}/dolphinpart ) install(FILES dolphinpart.desktop DESTINATION ${SERVICES_INSTALL_DIR} ) - ########################################## set(dolphin_SRCS @@ -109,7 +108,6 @@ set(dolphin_SRCS startupsettingspage.cpp statusbarspaceinfo.cpp statusbarmessagelabel.cpp - terminalsidebarpage.cpp treeviewcontextmenu.cpp treeviewsidebarpage.cpp sidebartreeview.cpp @@ -117,6 +115,9 @@ set(dolphin_SRCS viewsettingspage.cpp viewpropsprogressinfo.cpp ) +if(NOT WIN32) + set(dolphin_SRCS ${dolphin_SRCS} terminalsidebarpage.cpp) +endif(NOT WIN32) qt4_add_dbus_adaptor(dolphin_SRCS org.kde.dolphin.Application.xml |
