[celeron-berlios @ 1254]

Do not build more than needed

Original author: muntyan
Date: 2006-02-16 18:09:02.748886
master
Yevgen Muntyan 2006-02-17 01:06:14 +00:00
parent 6d1c1fd778
commit 6e1d9484a2
4 changed files with 40 additions and 34 deletions

View File

@ -7,24 +7,24 @@
<projectmanagement>KDevAutoProject</projectmanagement>
<primarylanguage>C++</primarylanguage>
<ignoreparts>
<part>kdevopenwith</part>
<part>kdevabbrev</part>
<part>kdevctags2</part>
<part>kdevclassview</part>
<part>kdevsnippet</part>
<part>kdevctags2</part>
<part>kdevdocumentation</part>
<part>kdevdoxygen</part>
<part>kdevfilegroups</part>
<part>kdevfileview</part>
<part>kdevfilelist</part>
<part>kdevfileview</part>
<part>kdevdistpart</part>
<part>kdevopenwith</part>
<part>kdevregexptest</part>
<part>kdevscripting</part>
<part>kdevtexttools</part>
</ignoreparts>
<projectdirectory>.</projectdirectory>
<absoluteprojectpath>false</absoluteprojectpath>
<description></description>
<description/>
<secondaryLanguages>
<language>C</language>
</secondaryLanguages>
@ -36,31 +36,31 @@
<useconfiguration>debug</useconfiguration>
</general>
<run>
<mainprogram>./medit</mainprogram>
<mainprogram>testfileview</mainprogram>
<directoryradio>executable</directoryradio>
<customdirectory>/</customdirectory>
<programargs/>
<programargs></programargs>
<terminal>false</terminal>
<autocompile>false</autocompile>
<envvars/>
</run>
<configurations>
<debug>
<configargs>--enable-debug=full --enable-all-gcc-warnings=fatal --disable-moo-module </configargs>
<configargs>--enable-debug=full --enable-all-gcc-warnings=fatal --disable-moo-module --without-mooapp --without-mooedit --without-mooterm</configargs>
<builddir>build/debug</builddir>
<ccompiler>kdevgccoptions</ccompiler>
<cxxcompiler>kdevgppoptions</cxxcompiler>
<f77compiler>kdevg77options</f77compiler>
<cflags>-O0 -g3</cflags>
<cxxflags>-O0 -g3</cxxflags>
<cflags>-O0 -g3 -pg</cflags>
<cxxflags>-O0 -g3 -pg</cxxflags>
<envvars/>
<topsourcedir></topsourcedir>
<cppflags></cppflags>
<ldflags></ldflags>
<ccompilerbinary></ccompilerbinary>
<cxxcompilerbinary></cxxcompilerbinary>
<f77compilerbinary></f77compilerbinary>
<f77flags></f77flags>
<topsourcedir/>
<cppflags/>
<ldflags/>
<ccompilerbinary/>
<cxxcompilerbinary/>
<f77compilerbinary/>
<f77flags/>
</debug>
<gtk-cvs>
<configargs>--enable-debug=full --enable-all-gcc-warnings=fatal --enable-developer-mode --disable-moo-module --without-python --without-mooterm --without-mooapp</configargs>
@ -198,12 +198,12 @@
</kdevautoproject>
<kdevdebugger>
<general>
<dbgshell></dbgshell>
<dbgshell/>
<programargs>--g-fatal-warnings</programargs>
<gdbpath></gdbpath>
<configGdbScript></configGdbScript>
<runShellScript></runShellScript>
<runGdbScript></runGdbScript>
<gdbpath/>
<configGdbScript/>
<runShellScript/>
<runGdbScript/>
<breakonloadinglibs>true</breakonloadinglibs>
<separatetty>false</separatetty>
<floatingtoolbar>true</floatingtoolbar>
@ -268,16 +268,16 @@
</kdevdoctreeview>
<kdevfilecreate>
<filetypes>
<type icon="source" ext="g" create="template" name="GAP source" >
<type icon="source" ext="g" name="GAP source" create="template" >
<descr>A new empty GAP source file</descr>
</type>
<type icon="source_cpp" ext="cpp" create="template" name="C++ Source" >
<type icon="source_cpp" ext="cpp" name="C++ Source" create="template" >
<descr>A new empty C++ file.</descr>
</type>
<type icon="source_h" ext="h" create="template" name="C/C++ Header" >
<type icon="source_h" ext="h" name="C/C++ Header" create="template" >
<descr>A new empty header file for C/C++.</descr>
</type>
<type icon="source_c" ext="c" create="template" name="C Source" >
<type icon="source_c" ext="c" name="C Source" create="template" >
<descr>A new empty C file.</descr>
</type>
</filetypes>
@ -304,7 +304,7 @@
</codecompletion>
<references/>
<creategettersetter>
<prefixGet></prefixGet>
<prefixGet/>
<prefixSet>set</prefixSet>
<prefixVariable>m_,_</prefixVariable>
<parameterName>theValue</parameterName>

View File

@ -7,15 +7,14 @@ moopython_srcdir = $(srcdir)/$(moopython)
moopython_sources = \
$(moopython)/moopython-utils.c \
$(moopython)/moopython-utils.h \
$(moopython)/moopython-utils.h
if MOO_BUILD_EDIT
moopython_sources += \
$(moopython)/mooplugin-python.c \
$(moopython)/mooplugin-python.h
endif
moopython_built_sources =
moopython_nodist_sources =
moopython_cleanfiles =
if MOO_USE_PYGTK
if !MOO_OS_MINGW
endif
endif

View File

@ -29,8 +29,15 @@ noinst_PROGRAMS += mterm #termbuffer
endif
endif
endif
if MOO_BUILD_UTILS
# noinst_PROGRAMS += testpanedfileview
if !MOO_BUILD_EDIT
if !MOO_BUILD_TERM
if !MOO_OS_CYGWIN
noinst_PROGRAMS += testfileview
endif
endif
endif
endif
bin_PROGRAMS += $(medit)

View File

@ -7,7 +7,7 @@ int main (int argc, char *argv[])
GtkWidget *window, *tree;
gtk_init (&argc, &argv);
gdk_window_set_debug_updates (TRUE);
// gdk_window_set_debug_updates (TRUE);
window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
g_signal_connect (window, "destroy",