You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
556 B
14 lines
556 B
# Check for tdeunittest
|
|
AC_MSG_CHECKING([for tdeunittest])
|
|
|
|
# First we check if the console unittester could be compiled
|
|
have_tdeunittest_header="no"
|
|
KDE_CHECK_HEADER(tdeunittest/tester.h, have_tdeunittest_header="yes", , )
|
|
AM_CONDITIONAL(include_tdeunittest, test "$have_tdeunittest_header" = "yes")
|
|
|
|
# Second we check if the GUI-unittester could be compiled
|
|
have_tdeunittestgui_header="no"
|
|
KDE_CHECK_HEADER(tdeunittest/runnergui.h, have_tdeunittestgui_header="yes", , )
|
|
AM_CONDITIONAL(include_tdeunittestgui, test "$have_tdeunittestgui_header" = "yes")
|
|
|