-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(init repo): seqr: add basic sequencer server
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
0 parents
commit 59e8578
Showing
10 changed files
with
1,510 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
ACLOCAL_AMFLAGS = -I m4 | ||
|
||
SUBDIRS = src |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.