Skip to content

Commit

Permalink
(init repo): seqr: add basic sequencer server
Browse files Browse the repository at this point in the history
This commit initializes the repo with a basic sequencer server and
client library implementing the sequencer service protocol. It also
contains a travis-ci script for building the project.

Signed-off-by: Noah Watkins <[email protected]>
  • Loading branch information
dotnwat committed Jan 28, 2014
0 parents commit 59e8578
Show file tree
Hide file tree
Showing 10 changed files with 1,510 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
aclocal.m4
autom4te.cache/
compile
config.guess
config.log
config.status
config.sub
configure
depcomp
install-sh
libtool
ltmain.sh
missing
m4

Makefile
Makefile.in
.dirstamp
.deps
*.o

src/zlog-seqr
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
language: cpp

compiler:
- g++

before_install:
- sudo apt-get install -q libboost1.48-dev libboost-system1.48-dev libboost-program-options1.48-dev

install:
- autoreconf -ivf
- ./configure
- make

script:
- exit 0
3 changes: 3 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
ACLOCAL_AMFLAGS = -I m4

SUBDIRS = src
26 changes: 26 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
AC_PREREQ(2.59)

AC_INIT([zlog], [0.0.1], [[email protected]])

AC_PROG_LIBTOOL
AC_PROG_CXX
AC_LANG([C++])

AC_CONFIG_MACRO_DIR([m4])

AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects])

m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])

BOOST_REQUIRE([1.48])
BOOST_ASIO
BOOST_BIND
BOOST_SYSTEM
BOOST_PROGRAM_OPTIONS

AC_CONFIG_FILES([
Makefile
src/Makefile
])

AC_OUTPUT
Loading

0 comments on commit 59e8578

Please sign in to comment.