From 114a878c64ce6f8223cfd22d76a20eb16d177e5e Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- .../cpp/app_templates/kscons_kxt/SConscript-src | 72 ++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 languages/cpp/app_templates/kscons_kxt/SConscript-src (limited to 'languages/cpp/app_templates/kscons_kxt/SConscript-src') diff --git a/languages/cpp/app_templates/kscons_kxt/SConscript-src b/languages/cpp/app_templates/kscons_kxt/SConscript-src new file mode 100644 index 00000000..02432be5 --- /dev/null +++ b/languages/cpp/app_templates/kscons_kxt/SConscript-src @@ -0,0 +1,72 @@ +#! /usr/bin/env python +# SConscript for %{APPNAMELC} compilation and installation + +############################ +## Configuration + +## use the environment set in the top-level +## SConstruct file + +Import('env') +myenv=env.Copy() + +############################# +## Programs to build + +%{APPNAMELC}_sources=""" +settings.kcfgc +main.cpp +prefs.cpp +%{APPNAMELC}.skel +%{APPNAMELC}.cpp +%{APPNAMELC}view.cpp +prefs-base.ui +%{APPNAMELC}view_base.ui +""" + +# Our main program +# KDEprogram add the file to the install targets automatically, +# so you do not need to write myenv.KDEinstall( env['KDEBIN'], %{APPNAMELC}) +myenv.KDEprogram( "%{APPNAMELC}", %{APPNAMELC}_sources ) + +############################ +## Customization + +## Additional include paths for compiling the source files +## Always add '../' (top-level directory) because moc makes code that needs it +myenv.KDEaddpaths_includes( "./ ../" ) + +## Necessary libraries to link against +myenv.KDEaddlibs( "qt-mt kio kdecore kdeprint" ) + +## This shows how to add other link flags to the program +# myenv.KDEaddflags_link('-export-dynamic') + +## If you are using QThread, add this line +# myenv.KDEaddflags_link( '-DQT_THREAD_SUPPORT' ) + +############################# +## Installation + +## NOTE 1: The program is installed automatically +## NOTE 2: KDEinstall( resource_type, subdirectory, list_of_files ) + +## The ui.rc file and the tips go into datadir/appname/ +myenv.KDEinstall( 'KDEDATA', '/%{APPNAMELC}', '%{APPNAMELC}ui.rc' ) +myenv.KDEinstall( 'KDEDATA', '/%{APPNAMELC}', 'tips' ) + +## The kcfg file is installed in a global kcfg directory +myenv.KDEinstall( 'KDEKCFG', '', '%{APPNAMELC}.kcfg' ) + +## Warning : there is a difference between the normal destop file used for the menu +## and the servicetype desktop file, so they go in different directories +myenv.KDEinstall( 'KDEMENU', 'Utilities/', '%{APPNAMELC}.desktop' ) + +## Use this when you need to install a mimetype file +#myenv.KDEinstall( 'KDEMIME', 'application', 'x-%{APPNAMELC}.desktop' ) + +## Installing icons is easy (hi-16-app-%{APPNAMELC}.png, hi-22-app-%{APPNAMELC}.png) +#myenv.KDEicon() + +## do not forget that this is a python script so even loops are allowed... :) + -- cgit v1.2.1