~ubuntu-branches/ubuntu/utopic/kde-workspace/utopic-proposed

« back to all changes in this revision

Viewing changes to cursors/src/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Michał Zając
  • Date: 2011-07-09 08:31:15 UTC
  • Revision ID: james.westby@ubuntu.com-20110709083115-ohyxn6z93mily9fc
Tags: upstream-4.6.90
Import upstream version 4.6.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include(cursors.cmake)
 
2
include(config.cmake)
 
3
include(setup.cmake)
 
4
 
 
5
set(COLORS
 
6
    black
 
7
    blue
 
8
    bluecurve
 
9
    brown
 
10
    cherry
 
11
    chrome
 
12
    desert
 
13
    emerald
 
14
    green
 
15
    grey
 
16
    honeycomb
 
17
    hot_orange
 
18
    lilac
 
19
    midnight_meadow
 
20
    navy
 
21
    norway
 
22
    obsidian
 
23
    obsidian-hc
 
24
    olympus
 
25
    olympus-inv
 
26
    orchid
 
27
    oxygen
 
28
    peach
 
29
    purple
 
30
    red
 
31
    red-argentina
 
32
    sea_blue
 
33
    steel
 
34
    terra
 
35
    terra_green
 
36
    violet
 
37
    viorange
 
38
    white
 
39
    whitewater
 
40
    wonton
 
41
    yellow
 
42
    zion
 
43
   )
 
44
 
 
45
foreach(color ${COLORS})
 
46
    add_subdirectory(theme-${color})
 
47
    list(APPEND PACKAGES package-${color})
 
48
    list(APPEND PACKAGES package-${color}-big)
 
49
    message(STATUS "Added themes for ${color}")
 
50
endforeach(color)