Skip to content

Commit 147f4c9

Browse files
mr-martianunhammer
andauthored
Add shared library for parsing stream format (#188)
Co-authored-by: Kevin Brubeck Unhammer <[email protected]>
1 parent 3d32b18 commit 147f4c9

7 files changed

+309
-455
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ install_manifest.txt
2626
*.so
2727
*.dylib
2828
*.dll
29+
lttoolbox/liblttoolbox.so.*
2930

3031
# Fortran module files
3132
*.mod

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.12 FATAL_ERROR)
22
cmake_policy(VERSION ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION})
33
project(lttoolbox
4-
VERSION 3.7.15
4+
VERSION 3.8.0
55
LANGUAGES CXX C
66
)
77
set(VERSION ${PROJECT_VERSION})

lttoolbox/CMakeLists.txt

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ set(LIBLTTOOLBOX_HEADERS
2525
sorted_vector.h
2626
sorted_vector.hpp
2727
state.h
28+
stream_reader.h
2829
string_utils.h
2930
symbol_iter.h
3031
tmx_compiler.h
@@ -55,6 +56,7 @@ set(LIBLTTOOLBOX_SOURCES
5556
regexp_compiler.cc
5657
sorted_vector.cc
5758
state.cc
59+
stream_reader.cc
5860
string_utils.cc
5961
symbol_iter.cc
6062
tmx_compiler.cc

0 commit comments

Comments
 (0)