Florian Stinglmayr
92b909158c
Use tiny expression library (from Github) and expand it to provide dice expression parsing. This needs more testing obviously.
10 lines
207 B
Makefile
10 lines
207 B
Makefile
bin_PROGRAMS = test_dice_simple_roll \
|
|
test_dice_parse \
|
|
test_dice_evaluate \
|
|
test_expr_parse
|
|
|
|
AM_CFLAGS = -I../lib ${CMOCKA_CFLAGS}
|
|
AM_LDFLAGS = ${CMOCKA_LIBS} ../libdice.la
|
|
|
|
TESTS = $(bin_PROGRAMS)
|