Created
July 27, 2012 23:54
-
-
Save saitoha/3191118 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt | |
| index 3790bfc..ff1f759 100644 | |
| --- a/src/CMakeLists.txt | |
| +++ b/src/CMakeLists.txt | |
| @@ -155,8 +155,56 @@ ${CMAKE_CURRENT_BINARY_DIR}/tests/CTestCustom.cmake) | |
| target_link_libraries(konsoleprivate LINK_INTERFACE_LIBRARIES ${konsole_LIBS}) | |
| set(konsole_KDEINIT_SRCS | |
| + ${sessionadaptors_SRCS} | |
| + ${windowadaptors_SRCS} | |
| Application.cpp | |
| MainWindow.cpp | |
| + BookmarkHandler.cpp | |
| + ColorScheme.cpp | |
| + ColorSchemeManager.cpp | |
| + ColorSchemeEditor.cpp | |
| + CopyInputDialog.cpp | |
| + EditProfileDialog.cpp | |
| + Emulation.cpp | |
| + Filter.cpp | |
| + History.cpp | |
| + HistorySizeDialog.cpp | |
| + HistorySizeWidget.cpp | |
| + IncrementalSearchBar.cpp | |
| + KeyBindingEditor.cpp | |
| + KeyboardTranslator.cpp | |
| + KeyboardTranslatorManager.cpp | |
| + ManageProfilesDialog.cpp | |
| + ProcessInfo.cpp | |
| + Profile.cpp | |
| + ProfileList.cpp | |
| + ProfileReader.cpp | |
| + ProfileWriter.cpp | |
| + ProfileManager.cpp | |
| + Pty.cpp | |
| + RenameTabDialog.cpp | |
| + RenameTabWidget.cpp | |
| + Screen.cpp | |
| + ScreenWindow.cpp | |
| + Session.cpp | |
| + SessionController.cpp | |
| + SessionManager.cpp | |
| + SessionListModel.cpp | |
| + ShellCommand.cpp | |
| + TabTitleFormatButton.cpp | |
| + TerminalCharacterDecoder.cpp | |
| + ExtendedCharTable.cpp | |
| + TerminalDisplay.cpp | |
| + TerminalDisplayAccessible.cpp | |
| + ViewContainer.cpp | |
| + ViewContainerTabBar.cpp | |
| + ViewManager.cpp | |
| + ViewProperties.cpp | |
| + ViewSplitter.cpp | |
| + Vt102Emulation.cpp | |
| + ZModemDialog.cpp | |
| + konsole_wcwidth.cpp | |
| + WindowSystemInfo.cpp | |
| main.cpp | |
| settings/GeneralSettings.cpp | |
| settings/TabBarSettings.cpp | |
| @@ -168,13 +216,61 @@ ${CMAKE_CURRENT_BINARY_DIR}/tests/CTestCustom.cmake) | |
| kde4_add_kdeinit_executable( konsole ${konsole_KDEINIT_SRCS}) | |
| target_link_libraries(kdeinit_konsole konsoleprivate) | |
| - install(TARGETS kdeinit_konsole konsole konsoleprivate ${INSTALL_TARGETS_DEFAULT_ARGS}) | |
| + install(TARGETS kdeinit_konsole kdeinit_konsole konsole konsoleprivate ${INSTALL_TARGETS_DEFAULT_ARGS}) | |
| ### Embedded Konsole KPart | |
| set(konsolepart_PART_SRCS | |
| ${konsole_COMMON_SRCS} | |
| + ${sessionadaptors_SRCS} | |
| + ${windowadaptors_SRCS} | |
| Part.cpp | |
| + BookmarkHandler.cpp | |
| + ColorScheme.cpp | |
| + ColorSchemeManager.cpp | |
| + ColorSchemeEditor.cpp | |
| + CopyInputDialog.cpp | |
| + EditProfileDialog.cpp | |
| + Emulation.cpp | |
| + Filter.cpp | |
| + History.cpp | |
| + HistorySizeDialog.cpp | |
| + HistorySizeWidget.cpp | |
| + IncrementalSearchBar.cpp | |
| + KeyBindingEditor.cpp | |
| + KeyboardTranslator.cpp | |
| + KeyboardTranslatorManager.cpp | |
| + ManageProfilesDialog.cpp | |
| + ProcessInfo.cpp | |
| + Profile.cpp | |
| + ProfileList.cpp | |
| + ProfileReader.cpp | |
| + ProfileWriter.cpp | |
| + ProfileManager.cpp | |
| + Pty.cpp | |
| + RenameTabDialog.cpp | |
| + RenameTabWidget.cpp | |
| + Screen.cpp | |
| + ScreenWindow.cpp | |
| + Session.cpp | |
| + SessionController.cpp | |
| + SessionManager.cpp | |
| + SessionListModel.cpp | |
| + ShellCommand.cpp | |
| + TabTitleFormatButton.cpp | |
| + TerminalCharacterDecoder.cpp | |
| + ExtendedCharTable.cpp | |
| + TerminalDisplay.cpp | |
| + TerminalDisplayAccessible.cpp | |
| + ViewContainer.cpp | |
| + ViewContainerTabBar.cpp | |
| + ViewManager.cpp | |
| + ViewProperties.cpp | |
| + ViewSplitter.cpp | |
| + Vt102Emulation.cpp | |
| + ZModemDialog.cpp | |
| + konsole_wcwidth.cpp | |
| + WindowSystemInfo.cpp | |
| ) | |
| kde4_add_plugin(konsolepart WITH_PREFIX ${konsolepart_PART_SRCS}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment