blob: f595f9c9343a3b34cae1a57827cf9abd88db784d (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# CMakeLists for po/modules/python
# Includes:
# src/modules/python
# src/modules/pythoncore
file(GLOB pofiles "${CMAKE_CURRENT_SOURCE_DIR}/*.po")
file(GLOB mofiles "${CMAKE_CURRENT_SOURCE_DIR}/*.mo")
set(POTFILE python.pot)
set(XGETTEXT_SOURCESDIR)
list(APPEND XGETTEXT_SOURCESDIR ${CMAKE_SOURCE_DIR}/src/modules/python)
list(APPEND XGETTEXT_SOURCESDIR ${CMAKE_SOURCE_DIR}/src/modules/pythoncore)
# Install target
include(${CMAKE_SOURCE_DIR}/cmake/translation.rules.txt)
|