gambas-source-code/main/lib/debug/Makefile.am
Benoît Minisini 07387ff660 [DEVELOPMENT ENVIRONMENT]
* NEW: Add some debugging options directly in the 'Debug' menu.
* NEW: A new option to activate the profiling of the debugged project.
* NEW: Profiling windows. Not finished yet.

[INTERPRETER]
* BUG: Fix a crash that could occur if a error is raised inside an event 
  handler.
* NEW: Support for profiling.
* BUG: Fix a crash that could occur if a error is raised inside a signal
  callback.

[GB.DEBUG]
* NEW: Support for profiling.

[GB.FORM]
* NEW: GridView now raises a Sort event when the sort properties are 
  changed.
* BUG: Fix a crash when changing the IconPanel Count property.

[GB.GTK]
* BUG: Fix the Font.Copy() method.


git-svn-id: svn://localhost/gambas/trunk@4740 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2012-05-19 02:55:05 +00:00

18 lines
410 B
Makefile

COMPONENT = gb.debug
include $(top_srcdir)/component.am
gblib_LTLIBRARIES = gb.debug.la
gb_debug_la_LIBADD = @GBX_THREAD_LIB@
gb_debug_la_LDFLAGS = -module @LD_FLAGS@
gb_debug_la_CFLAGS = -I$(top_srcdir)/share -I$(top_srcdir)/gbx @GBX_THREAD_INC@ @INCLTDL@ $(AM_CFLAGS)
gb_debug_la_SOURCES = \
CDebug.h CDebug.c \
print.h print.c \
debug.h debug.c \
profile.h profile.c \
main.h main.c \
gb.debug.h