-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
major code refactoring PLUS we now create a libmbtserver
- Loading branch information
Ko van der Sloot
authored and
Ko van der Sloot
committed
Aug 13, 2019
1 parent
d3b7205
commit 703a9d9
Showing
7 changed files
with
84 additions
and
6 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
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
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 |
---|---|---|
@@ -1,4 +1,2 @@ | ||
# $Id$ | ||
# $URL$ | ||
|
||
pkginclude_HEADERS = MbtServerBase.h |
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
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,12 @@ | ||
prefix=@prefix@ | ||
exec_prefix=@exec_prefix@ | ||
libdir=@libdir@ | ||
includedir=@includedir@ | ||
|
||
Name: mbt | ||
Version: @VERSION@ | ||
Description: mbt server library. | ||
Requires.private: mbt >= 3.5 | ||
Libs: -L${libdir} -lmbtserver | ||
Libs.private: @LIBS@ | ||
Cflags: -I${includedir} |
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 |
---|---|---|
@@ -1,6 +1,13 @@ | ||
AM_CPPFLAGS = -I@top_srcdir@/include | ||
AM_CXXFLAGS = -std=c++11 | ||
|
||
LDADD = libmbtserver.la | ||
|
||
bin_PROGRAMS = mbtserver | ||
|
||
mbtserver_SOURCES = MbtServer.cxx MbtServerBase.cxx MbtJSONServerBase.cxx | ||
mbtserver_SOURCES = MbtServer.cxx | ||
|
||
lib_LTLIBRARIES = libmbtserver.la | ||
libmbtserver_la_LDFLAGS= -version-info 1:0:0 | ||
|
||
libmbtserver_la_SOURCES = MbtServerBase.cxx MbtJSONServerBase.cxx |
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