Compare commits

..

10 Commits
0.2 ... master

Author SHA1 Message Date
e614bf1939 fix travis for reals 2019-08-19 21:40:41 +02:00
bb7eb2d0d1 fix travis build 2019-08-19 21:38:21 +02:00
fa40a3e6d2 update readme 2019-08-19 21:34:41 +02:00
4168c83958 minor fixes for cmake 2019-08-19 21:33:32 +02:00
ea280a39b4 remove the gnu autotools stuff 2019-08-19 21:32:00 +02:00
823fcecc03 switch to cmake 2019-08-19 21:28:04 +02:00
e7ca9d9036 fix building 2018-05-18 10:57:39 +02:00
e543baff47 make autogen.sh OpenBSD friendly 2018-05-18 10:32:16 +02:00
b636a25e94 don't hardcode version 2018-05-11 17:08:26 +02:00
07e05034fc differentiate libdice flex/bison with prefix "dp"
This allows the library to be linked with other libraries that also
use flex and bison.
2018-05-11 17:02:45 +02:00
15 changed files with 109 additions and 96 deletions

View File

@ -25,5 +25,7 @@ install:
- sudo dpkg -i pkg-config_0.29.1-0ubuntu2_amd64.deb
script:
- ./build.sh
- make check
- mkdir build; cd build
- cmake .. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=/usr
- make
- make test

73
CMakeLists.txt Normal file
View File

@ -0,0 +1,73 @@
CMAKE_MINIMUM_REQUIRED(VERSION 3.2)
INCLUDE(CheckFunctionExists)
FIND_PACKAGE(PkgConfig)
FIND_PACKAGE(BISON)
FIND_PACKAGE(FLEX)
PKG_CHECK_MODULES(CMOCKA REQUIRED cmocka)
ENABLE_TESTING()
SET(VERSION "0.4")
SET(TARGET "dice")
SET(SOURCES
"lib/diceexpr.c"
"lib/dice.c"
)
SET(HEADERS
"lib/dice.h"
)
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/lib
${CMAKE_CURRENT_BINARY_DIR}
)
# Yacc/BISON/Flex stuff
BISON_TARGET(DICE_PARSER
"${CMAKE_CURRENT_SOURCE_DIR}/lib/dice_parse.y"
"${CMAKE_CURRENT_BINARY_DIR}/dice_parse.c"
COMPILE_FLAGS "-d"
)
FLEX_TARGET(DICE_LEXER
"${CMAKE_CURRENT_SOURCE_DIR}/lib/dice_lexer.l"
"${CMAKE_CURRENT_BINARY_DIR}/dice_lexer.c"
COMPILE_FLAGS "-P dp"
)
ADD_DEFINITIONS("-Wall")
CHECK_FUNCTION_EXISTS("arc4random_uniform" HAVE_ARC4RANDOM_UNIFORM)
IF (HAVE_ARC4RANDOM_UNIFORM)
ADD_DEFINITIONS("-DHAVE_ARC4RANDOM_UNIFORM")
ELSE()
PKG_CHECK_MODULES(BSD REQUIRED libbsd)
INCLUDE_DIRECTORIES(${BSD_INCLUDE_DIRS})
# used in pkg-config IN file
SET(REQUIRES "libbsd")
ENDIF()
# pkg-config file
CONFIGURE_FILE("${CMAKE_CURRENT_SOURCE_DIR}/libdice.pc.in"
"${CMAKE_CURRENT_BINARY_DIR}/libdice.pc"
)
ADD_LIBRARY(${TARGET} SHARED
${SOURCES} ${HEADERS}
${BISON_DICE_PARSER_OUTPUTS}
${FLEX_DICE_LEXER_OUTPUTS}
)
IF (NOT HAVE_ARC4RANDOM_UNIFORM)
TARGET_LINK_LIBRARIES(${TARGET} ${BSD_LIBRARIES} m)
ENDIF()
INSTALL(TARGETS ${TARGET} DESTINATION lib)
INSTALL(FILES ${HEADERS} DESTINATION include)
INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/libdice.pc
DESTINATION share/pkgconfig)
ADD_SUBDIRECTORY(tests)

View File

@ -0,0 +1,3 @@
2019-08-19 Florian Stinglmayr <fstinglmayr@gmail.com>
* build switch to cmake
* release version 0.4

View File

@ -1,21 +0,0 @@
AM_YFLAGS = -d
AM_LFLAGS = -P dp
BUILT_SOURCES = lib/dice_parse.h
lib_LTLIBRARIES = libdice.la
libdice_la_SOURCES = lib/dice_lexer.l \
lib/dice_parse.y \
lib/dice.h \
lib/dice.c \
lib/diceexpr.c \
lex.dp.c
include_HEADERS = lib/dice.h
AM_CFLAGS = -Ilib
libdice_la_LIBADD = ${BSD_LIBS} -lm
pkgconfig_DATA = libdice.pc
SUBDIRS = . tests

0
NEWS
View File

View File

@ -28,12 +28,15 @@ supports variable amount, variable sides and fudge dice at the moment:
* bison
* flex
* cmocka >= 1.0.1
* cmake
To build ``libdice`` run:
```shell
$ ./configure --prefix="/usr"
$ mkdir build; cd build
$ cmake .. -DCMAKE_INSTALL_PREFIX=/usr
$ make
$ make test
$ sudo make install
```

View File

@ -1,14 +0,0 @@
#!/bin/sh
set -e
set -x
cd "$(dirname "$0")"
PATH=$PATH:/usr/local/bin
aclocal $AC_SEARCH_OPTS
autoconf
autoreconf --install
autoheader
automake --copy --add-missing

View File

@ -1,10 +0,0 @@
#!/bin/sh
set -e
set -x
cd "$(dirname "$0")"
./autogen.sh
./configure "$@"
make

View File

@ -1,27 +0,0 @@
AC_PREREQ([2.69])
AC_INIT([libdice], [0.1], [florian@n0la.org])
AM_INIT_AUTOMAKE([subdir-objects])
LT_INIT()
AC_CONFIG_HEADERS([config.h])
AC_PROG_CC
AC_PROG_LEX
AC_PROG_YACC
PKG_CHECK_MODULES([CMOCKA], [cmocka >= 1.0.1])
AC_CHECK_HEADER_STDBOOL()
AC_CHECK_FUNCS([arc4random_uniform],,
[PKG_CHECK_MODULES([BSD], [libbsd])])
AC_CONFIG_FILES([Makefile tests/Makefile])
AC_SEARCH_LIBS([sqrt], [m])
AC_SEARCH_LIBS([cos], [m])
PKG_INSTALLDIR
AC_CONFIG_FILES([libdice.pc])
AC_OUTPUT

View File

@ -24,8 +24,6 @@
#include <string.h>
#include <stdio.h>
#include "config.h"
#ifndef HAVE_ARC4RANDOM_UNIFORM
#include <bsd/stdlib.h>
#endif

View File

@ -1,2 +0,0 @@
/* empty file, so that autotools has something to compile
*/

View File

@ -1,4 +1,3 @@
%option prefix="dp"
%option bison-bridge
%option reentrant

View File

@ -1,12 +1,11 @@
prefix=@prefix@
exec_prefix=@exec_prefix@
libdir=@libdir@
includedir=@includedir@
prefix=@CMAKE_INSTALL_PREFIX@
libdir=lib
includedir=include
Name: libdice
Description: dice rolling and math expression library
Version: 0.1
Requires:
Version: @VERSION@
Requires: @REQUIRES@
Conflicts:
Cflags: -I${includedir}
Libs: -L${libdir} -ldice

20
tests/CMakeLists.txt Normal file
View File

@ -0,0 +1,20 @@
CMAKE_MINIMUM_REQUIRED(VERSION 3.2)
SET(TESTS
"test_dice_evaluate"
"test_dice_fudge"
"test_dice_parse"
"test_dice_simple_roll"
"test_expr_parse"
)
INCLUDE_DIRECTORIES(
"${CMAKE_CURRENT_SOURCE_DIR}/../lib/"
${CMOCKA_INCLUDE_DIRS}
)
FOREACH(TEST ${TESTS})
ADD_EXECUTABLE(${TEST} ${TEST}.c)
TARGET_LINK_LIBRARIES(${TEST} dice ${CMOCKA_LIBRARIES})
ADD_TEST(NAME "${TEST}" COMMAND ${TEST})
ENDFOREACH()

View File

@ -1,10 +0,0 @@
check_PROGRAMS = test_dice_simple_roll \
test_dice_parse \
test_dice_evaluate \
test_dice_fudge \
test_expr_parse
AM_CFLAGS = -I../lib ${CMOCKA_CFLAGS}
AM_LDFLAGS = ${CMOCKA_LIBS} ../libdice.la
TESTS = $(check_PROGRAMS)