Skip to content

Commit 117deb6

Browse files
committed
bitstream not needed anymore
1 parent 70d8510 commit 117deb6

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

CMakeLists.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,6 @@ endif()
4444

4545
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${GCC_COVERAGE_COMPILE_FLAGS}")
4646

47-
add_subdirectory(third_party/bitstream)
48-
4947
# add where to find the source files
5048
# file(GLOB_RECURSE SOURCE ${PROJECT_SOURCE_DIR}/src/ *.cpp)
5149
list(APPEND SOURCE ${PROJECT_SOURCE_DIR}/src/utils.cpp
@@ -72,7 +70,7 @@ endif()
7270
add_subdirectory(doc)
7371

7472
add_library(${PROJECT_NAME} STATIC ${SOURCE})
75-
target_link_libraries(${PROJECT_NAME} bitstream FastFloat::fast_float)
73+
target_link_libraries(${PROJECT_NAME} FastFloat::fast_float)
7674

7775
if (${CMAKE_MINOR_VERSION} GREATER_EQUAL 23)
7876
target_sources(${PROJECT_NAME} INTERFACE FILE_SET HEADERS

src/message.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
#include <algorithm>
22
#include <libdbc/message.hpp>
33

4-
#include <bitstream.h>
5-
64
namespace libdbc {
75
Message::Message(uint32_t id, const std::string& name, uint8_t size, const std::string& node) :
86
m_id(id), m_name(name), m_size(size), m_node(node) {}

0 commit comments

Comments
 (0)