Rename library and repo

This commit is contained in:
2018-02-13 14:22:56 +01:00
parent 6511ff174b
commit 414c5da3da
3 changed files with 10 additions and 9 deletions
+4 -4
View File
@@ -6,19 +6,19 @@ MKDIR = mkdir -p
CPP = g++
CPPFLAGS = -Wall -fPIC -pthread -std=c++1y -I./include -I${CONDA_PREFIX}/include
LDLIBS = -L/usr/lib64 -L${CONDA_PREFIX}/lib -lzmq -lhdf5 -lhdf5_hl -lhdf5_cpp -lhdf5_hl_cpp -lboost_system -lboost_regex -lboost_thread -lpthread
LDFLAGS = -shared
LDFLAGS = -shared -Wl,-soname,libcpp_h5_writer.so
HEADERS = $(wildcard $(SRC_DIR)/*.hpp)
SRCS = $(wildcard $(SRC_DIR)/*.cpp)
OBJS = $(patsubst $(SRC_DIR)/%.cpp, $(OBJ_DIR)/%.o, $(SRCS))
all: build_dirs libCppH5Writer
all: build_dirs libcpp_h5_writer
debug: CPPFLAGS += -DDEBUG_OUTPUT -g
debug: all
libCppH5Writer: $(OBJS)
$(CPP) $(LDFLAGS) -o $(BIN_DIR)/libCppH5Writer.so $(OBJS) $(LDLIBS)
libcpp_h5_writer: $(OBJS)
$(CPP) $(LDFLAGS) -o $(BIN_DIR)/libcpp_h5_writer.so $(OBJS) $(LDLIBS)
$(OBJ_DIR)/%.o: $(SRC_DIR)/%.cpp
$(CPP) $(CPPFLAGS) $(LDLIBS) -c -o $@ $<
+3 -4
View File
@@ -1,7 +1,6 @@
# libCppH5Writer
This is the library used for creating C++ based stream writer for H5 files.
It focuses on the functionality needed for high performance detectors integrations.
# lib_cpp_h5_writer
This library is used for creating C++ based stream writer for H5 files. It focuses on the functionality
and performance needed for high performance detectors integrations.
Key features:
- Get data from ZMQ stream (Array-1.0 protocol) - [htypes specification](https://github.com/datastreaming/htypes)
+3 -1
View File
@@ -1,4 +1,6 @@
make
cp bin/* ${PREFIX}/lib
cp src/*.hpp ${PREFIX}/include
mkdir -p ${PREFIX}/include/cpp_h5_writer
cp src/*.hpp ${PREFIX}/include/cpp_h5_writer