diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-06 02:32:07 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-06 02:32:07 -0600 |
commit | b4e545384b42deff2db00ff815c4cacbeb5d1860 (patch) | |
tree | bfb3416e8ebc56b09f3df5e68eb0473dbc5ef13c /languages/cpp/app_templates/kscons_kmdi | |
parent | 35f3f9ef33100c276b267e7e933709fdf737b2fe (diff) | |
download | tdevelop-b4e545384b42deff2db00ff815c4cacbeb5d1860.tar.gz tdevelop-b4e545384b42deff2db00ff815c4cacbeb5d1860.zip |
Additional kde to tde renaming
Diffstat (limited to 'languages/cpp/app_templates/kscons_kmdi')
-rw-r--r-- | languages/cpp/app_templates/kscons_kmdi/README | 2 | ||||
-rw-r--r-- | languages/cpp/app_templates/kscons_kmdi/SConscript-src | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/languages/cpp/app_templates/kscons_kmdi/README b/languages/cpp/app_templates/kscons_kmdi/README index 28c9af22..351a39ac 100644 --- a/languages/cpp/app_templates/kscons_kmdi/README +++ b/languages/cpp/app_templates/kscons_kmdi/README @@ -75,7 +75,7 @@ in the src directory : <myproject>.kcfg and a <settings>.kcfgc The configure.in.in will need to be modified : change the line #MIN_CONFIG(3.0.0) into #MIN_CONFIG(3.2.0) -Take an example on the many apps found in the kdegames source package and consult : +Take an example on the many apps found in the tdegames source package and consult : http://developer.kde.org/documentation/tutorials/kconfigxt/kconfigxt.html * With KParts, you can embed other kde components in your program, or make your program diff --git a/languages/cpp/app_templates/kscons_kmdi/SConscript-src b/languages/cpp/app_templates/kscons_kmdi/SConscript-src index 9850e2ae..8c6423b6 100644 --- a/languages/cpp/app_templates/kscons_kmdi/SConscript-src +++ b/languages/cpp/app_templates/kscons_kmdi/SConscript-src @@ -22,7 +22,7 @@ prefs.ui # Now that we have our list of sources we can build the program myenv.KDEprogram( '%{APPNAMELC}', %{APPNAMELC}_sources ) # main program myenv.KDEaddpaths_includes( './ ../' ) # additional paths -myenv.KDEaddlibs( 'qt-mt kdecore kio kparts kmdi' ) # additional libraries +myenv.KDEaddlibs( 'qt-mt tdecore kio kparts kmdi' ) # additional libraries ## Next, the kpart library ## using KDEshlib, the .so and .la are installed automatically when needed @@ -31,7 +31,7 @@ myenv2=env.Copy() %{APPNAMELC}part_sources = '%{APPNAMELC}_part.cpp' myenv2.KDEshlib( 'lib%{APPNAMELC}part', %{APPNAMELC}part_sources) myenv2.KDEaddpaths_includes( './ #/' ) # the '#' means the top-level directory -myenv2.KDEaddlibs( 'qt-mt kio kdecore kdeprint kparts' ) +myenv2.KDEaddlibs( 'qt-mt kio tdecore tdeprint kparts' ) # myenv2.KDEaddflags_link( '-DQT_THREAD_SUPPORT' ) ############################# |