aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLauro Neto <lauro.neto@openbossa.org>2010-08-31 18:13:20 -0300
committerLauro Neto <lauro.neto@openbossa.org>2010-09-01 11:46:05 -0300
commit36a73c0ecd1d1a71a331663697e485e2fbece8b0 (patch)
tree653bbf7a0ba3d7cef850d229426d5b970776cce1
parent60122d3709b1b66fc711b10c39cb3c75d17c4908 (diff)
Also install the typesystem used during generation.
Installs the typesystem fed to the generator. This fixes the install of modules like QtGui, with run-time generated typesystems. Reviewer: Hugo Lima <hugo.lima@openbossa.org> Reviewer: Renato Filho <renato.filho@openbossa.org>
-rw-r--r--PySide/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/PySide/CMakeLists.txt b/PySide/CMakeLists.txt
index 09dd144ca..edd3b44f1 100644
--- a/PySide/CMakeLists.txt
+++ b/PySide/CMakeLists.txt
@@ -48,7 +48,7 @@ macro(create_pyside_module module_name module_include_dir module_libraries modul
string(TOLOWER ${module_name} lower_module_name)
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/PySide/${module_name}/pyside_${lower_module_name}_python.h
DESTINATION include/PySide/${module_name}/)
- file(GLOB typesystem_files ${CMAKE_CURRENT_SOURCE_DIR}/typesystem_*.xml)
+ file(GLOB typesystem_files ${CMAKE_CURRENT_SOURCE_DIR}/typesystem_*.xml ${typesystem_path})
install(FILES ${typesystem_files} DESTINATION share/PySide/typesystems)
endmacro()