diff options
Diffstat (limited to 'kopete/styles/Kopete')
7 files changed, 99 insertions, 0 deletions
diff --git a/kopete/styles/Kopete/CMakeLists.txt b/kopete/styles/Kopete/CMakeLists.txt new file mode 100644 index 00000000..f08e42e2 --- /dev/null +++ b/kopete/styles/Kopete/CMakeLists.txt @@ -0,0 +1,12 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_subdirectory( Contents ) diff --git a/kopete/styles/Kopete/Contents/CMakeLists.txt b/kopete/styles/Kopete/Contents/CMakeLists.txt new file mode 100644 index 00000000..88724a18 --- /dev/null +++ b/kopete/styles/Kopete/Contents/CMakeLists.txt @@ -0,0 +1,12 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_subdirectory( Resources ) diff --git a/kopete/styles/Kopete/Contents/Resources/CMakeLists.txt b/kopete/styles/Kopete/Contents/Resources/CMakeLists.txt new file mode 100644 index 00000000..ee273f43 --- /dev/null +++ b/kopete/styles/Kopete/Contents/Resources/CMakeLists.txt @@ -0,0 +1,19 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_subdirectory( images ) +add_subdirectory( Incoming ) +add_subdirectory( Outgoing ) +add_subdirectory( Variants ) + +install( FILES + main.css Footer.html Header.html Status.html + DESTINATION ${DATA_INSTALL_DIR}/kopete/styles/Kopete/Contents/Resources ) diff --git a/kopete/styles/Kopete/Contents/Resources/Incoming/CMakeLists.txt b/kopete/styles/Kopete/Contents/Resources/Incoming/CMakeLists.txt new file mode 100644 index 00000000..03eb154c --- /dev/null +++ b/kopete/styles/Kopete/Contents/Resources/Incoming/CMakeLists.txt @@ -0,0 +1,14 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +install( FILES + buddy_icon.png Content.html NextContent.html Action.html + DESTINATION ${DATA_INSTALL_DIR}/kopete/styles/Kopete/Contents/Resources/Incoming ) diff --git a/kopete/styles/Kopete/Contents/Resources/Outgoing/CMakeLists.txt b/kopete/styles/Kopete/Contents/Resources/Outgoing/CMakeLists.txt new file mode 100644 index 00000000..5b1f22e5 --- /dev/null +++ b/kopete/styles/Kopete/Contents/Resources/Outgoing/CMakeLists.txt @@ -0,0 +1,14 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +install( FILES + buddy_icon.png Content.html NextContent.html Action.html + DESTINATION ${DATA_INSTALL_DIR}/kopete/styles/Kopete/Contents/Resources/Outgoing ) diff --git a/kopete/styles/Kopete/Contents/Resources/Variants/CMakeLists.txt b/kopete/styles/Kopete/Contents/Resources/Variants/CMakeLists.txt new file mode 100644 index 00000000..62829811 --- /dev/null +++ b/kopete/styles/Kopete/Contents/Resources/Variants/CMakeLists.txt @@ -0,0 +1,14 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +install( FILES + Big_pictures.css Contact_color.css + DESTINATION ${DATA_INSTALL_DIR}/kopete/styles/Kopete/Contents/Resources/Variants ) diff --git a/kopete/styles/Kopete/Contents/Resources/images/CMakeLists.txt b/kopete/styles/Kopete/Contents/Resources/images/CMakeLists.txt new file mode 100644 index 00000000..3eb4783d --- /dev/null +++ b/kopete/styles/Kopete/Contents/Resources/images/CMakeLists.txt @@ -0,0 +1,14 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +install( FILES + action.png important.png system.png + DESTINATION ${DATA_INSTALL_DIR}/kopete/styles/Kopete/Contents/Resources/images ) |