diff options
author | Timothy Pearson <[email protected]> | 2013-01-08 20:18:50 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-08 20:18:50 -0600 |
commit | 477e956a04dfb244814f274e98a8d6f4beb84f3f (patch) | |
tree | 8ce70dbbd93389354327fd1c063c0a94ff30be87 /tdeinit/CMakeLists.txt | |
parent | c24b096e62d6137acdcb71e5ed5b08d43ecbb928 (diff) | |
download | tdebase-477e956a04dfb244814f274e98a8d6f4beb84f3f.tar.gz tdebase-477e956a04dfb244814f274e98a8d6f4beb84f3f.zip |
Add per-user display settings
This partially resolves Bug 1264
Fix displayconfig crashes and warnings
Slightly clean up iccconfig and hwmanager
Diffstat (limited to 'tdeinit/CMakeLists.txt')
-rw-r--r-- | tdeinit/CMakeLists.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tdeinit/CMakeLists.txt b/tdeinit/CMakeLists.txt index 6f1f7ba96..3fd7d934e 100644 --- a/tdeinit/CMakeLists.txt +++ b/tdeinit/CMakeLists.txt @@ -12,6 +12,7 @@ include_directories( ${TDE_INCLUDE_DIR} ${TQT_INCLUDE_DIRS} + ${CMAKE_BINARY_DIR} ) link_directories( @@ -26,3 +27,15 @@ tde_add_executable( tdeinit_phase1 LINK tdecore-shared DESTINATION ${BIN_INSTALL_DIR} ) + + +##### tdeinit_displayconfig (executable) ####################### +if( WITH_XRANDR ) + set( TDEINIT_DISPLAYCONFIG_OPTIONAL_LINK "krandr-shared" ) +endif ( ) + +tde_add_executable( tdeinit_displayconfig + SOURCES displayconfig.cpp + LINK tdecore-shared ${TDEINIT_DISPLAYCONFIG_OPTIONAL_LINK} + DESTINATION ${BIN_INSTALL_DIR} +)
\ No newline at end of file |