Skip to content
Snippets Groups Projects
Commit a98ba580 authored by Sergey Yakubov's avatar Sergey Yakubov
Browse files

update readme, added python producer source dist for windows

parent ee18aa77
No related branches found
No related tags found
No related merge requests found
##20.09.1
IMPROVEMENTS
* Each data tuple automatically gets a timestamp (nanoseconds from Linux epoch) at the moment it is being inserted to a database
* GetSubstreamList/get_substream_list returns now sorted (by timestamp of the earliest data tuple) list of substreams. Parameter `from` allows to limit the list
BREAKING CHANGES
* GetSubstreamList/get_substream_list returns now not an array of strings, but array of StreamInfos/dictionaries
##20.09.0
FEATURES
......
......@@ -28,3 +28,4 @@ target_include_directories(${TARGET_NAME} PUBLIC include ${Python3_INCLUDE_DIRS
add_subdirectory(binary_dist_windows)
add_subdirectory(source_dist_linux)
......@@ -16,7 +16,6 @@ ADD_CUSTOM_TARGET(copy_python_dist-producer ALL
COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_CURRENT_BINARY_DIR}/lib
COMMAND ${CMAKE_COMMAND} -E copy ${CURL_LIBRARIES} ${CMAKE_CURRENT_BINARY_DIR}/lib
COMMAND ${CMAKE_COMMAND} -E copy $<TARGET_FILE:asapo-producer> ${CMAKE_CURRENT_BINARY_DIR}/lib
)
......
......@@ -4,7 +4,7 @@ import numpy
ext_modules = [
Extension("asapo_producer", ["asapo_producer.cpp"],
extra_objects=['lib/libasapo-producer.a', 'lib/libcurl.a'],
extra_objects=['lib/libasapo-producer@CMAKE_STATIC_LIBRARY_SUFFIX@', 'lib/libcurl@CMAKE_STATIC_LIBRARY_SUFFIX@'],
include_dirs=["include/common","include",numpy.get_include()],
extra_compile_args=@EXTRA_COMPILE_ARGS@,
extra_link_args=@EXTRA_LINK_ARGS@,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment