diff options
Diffstat (limited to 'languages/python/app_templates/pyqt')
-rw-r--r-- | languages/python/app_templates/pyqt/CMakeLists.txt | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/languages/python/app_templates/pyqt/CMakeLists.txt b/languages/python/app_templates/pyqt/CMakeLists.txt new file mode 100644 index 00000000..131e2165 --- /dev/null +++ b/languages/python/app_templates/pyqt/CMakeLists.txt @@ -0,0 +1,29 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_custom_target( pyqt.tar.gz ALL + COMMAND tar zcf pyqt.tar.gz -C ${CMAKE_CURRENT_SOURCE_DIR} + app.py app.kdevelop fileopen.pyxpm fileprint.pyxpm + filesave.pyxpm app-Makefile.am app-autogen.sh + app-configure.ac documentdetails.ui missing install-sh + mkinstalldirs pyqt-am-preproc.py templates-ui-dialog + templates-ui-mainwin pyqt.png +) + + +install( FILES + ${CMAKE_CURRENT_BINARY_DIR}/pyqt.tar.gz pyqt.png + DESTINATION ${DATA_INSTALL_DIR}/kdevappwizard ) + + +install( FILES + pyqt.kdevtemplate + DESTINATION ${DATA_INSTALL_DIR}/kdevappwizard/templates ) |