all repos — tint2 @ 359f13f00464c24fbe82a02b74c231c286d66b34

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

*add* tint2conf cmake file



git-svn-id: http://tint2.googlecode.com/svn/trunk@472 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
Andreas.Fink85 Andreas.Fink85@121b4492-b84c-0410-8b4c-0d4edfb3f3cc
commit

359f13f00464c24fbe82a02b74c231c286d66b34

parent

45e82915ed8b523bcb9d7c016a8c205eb7b178dc

2 files changed, 36 insertions(+), 0 deletions(-)

jump to
M CMakeLists.txtCMakeLists.txt

@@ -45,6 +45,11 @@ set( SOURCES ${SOURCES} src/battery/battery.c )

add_definitions( -DENABLE_BATTERY ) endif( ENABLE_BATTERY ) +option( ENABLE_TINT2CONF "Enable tint2conf. A tint2 theme switcher" ON ) +if ( ENABLE_TINT2CONF ) + add_subdirectory( src/tint2conf ) +endif( ENABLE_TINT2CONF ) + add_executable(tint2 ${SOURCES}) target_link_libraries( tint2 ${X11_LIBRARIES}
A src/tint2conf/CMakeLists.txt

@@ -0,0 +1,31 @@

+project(tint2conf) +cmake_minimum_required(VERSION 2.6) + +include( FindPkgConfig ) +pkg_check_modules( X11 REQUIRED x11 xrender ) +pkg_check_modules( GLIB2 REQUIRED glib-2.0 ) +pkg_check_modules( GOBJECT2 REQUIRED gobject-2.0 ) +pkg_check_modules( IMLIB2 REQUIRED imlib2 ) +pkg_check_modules( GTHREAD2 REQUIRED gthread-2.0 ) +pkg_check_modules( GTK2 REQUIRED gtk+-x11-2.0 ) + +include_directories( ../util + ${X11_INCLUDE_DIRS} + ${GLIB2_INCLUDE_DIRS} + ${GOBJECT2_INCLUDE_DIRS} + ${IMLIB2_INCLUDE_DIRS} + ${GTHREAD2_INCLUDE_DIRS} + ${GTK2_INCLUDE_DIRS} ) + +set(SOURCES ../util/common.c + main.c + theme_view.c ) +add_executable( tint2conf ${SOURCES} ) +target_link_libraries( tint2conf ${X11_LIBRARIES} + ${GLIB2_LIBRARIES} + ${GOBJECT2_LIBRARIES} + ${IMLIB2_LIBRARIES} + ${GTHREAD2_LIBRARIES} + ${GTK2_LIBRARIES} ) + +install( TARGETS tint2conf DESTINATION bin )