blob: c9516b52cedf20b072201145558eabe1d25794b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#################################################
#
# (C) 2010-2011 Serghei Amelian
# serghei (DOT) amelian (AT) gmail.com
#
# Improvements and feedback are welcome
#
#################################################
install( FILES
northafrica.desktop westafrica.desktop southafrica.desktop
centralafrica.desktop caribbean.desktop oceania.desktop
centralamerica.desktop northamerica.desktop southamerica.desktop
easteurope.desktop westeurope.desktop centraleurope.desktop
northeurope.desktop southeurope.desktop southasia.desktop
southeastasia.desktop eastasia.desktop centralasia.desktop
middleeast.desktop
DESTINATION
${LOCALE_INSTALL_DIR}/l10n )
file( GLOB _dirs RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} * )
foreach( _dir ${_dirs} )
if( IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/${_dir} )
if( NOT (${_dir} STREQUAL ".svn" OR ${_dir} STREQUAL "CMakeFiles") )
install( FILES ${_dir}/entry.desktop ${_dir}/flag.png
DESTINATION ${LOCALE_INSTALL_DIR}/l10n/${_dir} )
endif( )
endif( )
endforeach( )
|