Skip to content

Commit

Permalink
Add shared library for parsing stream format (#188)
Browse files Browse the repository at this point in the history
Co-authored-by: Kevin Brubeck Unhammer <[email protected]>
  • Loading branch information
mr-martian and unhammer authored Dec 10, 2024
1 parent 3d32b18 commit 147f4c9
Show file tree
Hide file tree
Showing 7 changed files with 309 additions and 455 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ install_manifest.txt
*.so
*.dylib
*.dll
lttoolbox/liblttoolbox.so.*

# Fortran module files
*.mod
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.12 FATAL_ERROR)
cmake_policy(VERSION ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION})
project(lttoolbox
VERSION 3.7.15
VERSION 3.8.0
LANGUAGES CXX C
)
set(VERSION ${PROJECT_VERSION})
Expand Down
2 changes: 2 additions & 0 deletions lttoolbox/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ set(LIBLTTOOLBOX_HEADERS
sorted_vector.h
sorted_vector.hpp
state.h
stream_reader.h
string_utils.h
symbol_iter.h
tmx_compiler.h
Expand Down Expand Up @@ -55,6 +56,7 @@ set(LIBLTTOOLBOX_SOURCES
regexp_compiler.cc
sorted_vector.cc
state.cc
stream_reader.cc
string_utils.cc
symbol_iter.cc
tmx_compiler.cc
Expand Down
Loading

0 comments on commit 147f4c9

Please sign in to comment.