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
532 B
14 lines
532 B
# Check for kunittest
|
|
AC_MSG_CHECKING([for kunittest])
|
|
|
|
# First we check if the console unittester could be compiled
|
|
have_kunittest_header="no"
|
|
KDE_CHECK_HEADER(kunittest/tester.h, have_kunittest_header="yes", , )
|
|
AM_CONDITIONAL(include_kunittest, test "$have_kunittest_header" = "yes")
|
|
|
|
# Second we check if the GUI-unittester could be compiled
|
|
have_kunittestgui_header="no"
|
|
KDE_CHECK_HEADER(kunittest/runnergui.h, have_kunittestgui_header="yes", , )
|
|
AM_CONDITIONAL(include_kunittestgui, test "$have_kunittestgui_header" = "yes")
|
|
|