9e4435791e
There is no product_LIBS is product_LDADD
12 lines
208 B
C
12 lines
208 B
C
#include <glib.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
g_test_init(&argc, &argv, NULL);
|
|
printf("Write some tests!!! Failing!\n");
|
|
exit(EXIT_FAILURE);
|
|
return 0;
|
|
}
|