Skip to content

Commit 12ccad5

Browse files
Documentation updated
1 parent 2093c18 commit 12ccad5

10 files changed

+44
-58
lines changed

.gitmodules

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
[submodule "3rdparty/Frame"]
2-
path = 3rdparty/Frame
3-
url = git@github.com:ConstantRobotics-Ltd/Frame.git
41
[submodule "3rdparty/ConfigReader"]
52
path = 3rdparty/ConfigReader
63
url = https://github.com/ConstantRobotics-Ltd/ConfigReader.git

3rdparty/CMakeLists.txt

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,6 @@ SET(${PARENT}_SUBMODULE_CACHE_OVERWRITE OFF CACHE BOOL "" FORCE)
2525
## CONFIGURATION
2626
## 3rd-party submodules configuration
2727
################################################################################
28-
SET(${PARENT}_SUBMODULE_FRAME ON CACHE BOOL "" FORCE)
29-
if (${PARENT}_SUBMODULE_FRAME)
30-
SET(${PARENT}_FRAME ON CACHE BOOL "" FORCE)
31-
SET(${PARENT}_FRAME_TEST OFF CACHE BOOL "" FORCE)
32-
endif()
33-
3428
SET(${PARENT}_SUBMODULE_CONFIG_READER ON CACHE BOOL "" FORCE)
3529
if (${PARENT}_SUBMODULE_CONFIG_READER)
3630
SET(${PARENT}_CONFIG_READER ON CACHE BOOL "" FORCE)
@@ -50,14 +44,11 @@ if (${PARENT}_SUBMODULE_VCODEC)
5044
endif()
5145

5246

47+
5348
################################################################################
5449
## INCLUDING SUBDIRECTORIES
5550
## Adding subdirectories according to the 3rd-party configuration
5651
################################################################################
57-
if (${PARENT}_SUBMODULE_FRAME)
58-
add_subdirectory(Frame)
59-
endif()
60-
6152
if (${PARENT}_SUBMODULE_CONFIG_READER)
6253
add_subdirectory(ConfigReader)
6354
endif()

3rdparty/Frame

Lines changed: 0 additions & 1 deletion
This file was deleted.

README.md

Lines changed: 38 additions & 38 deletions
Large diffs are not rendered by default.
-171 KB
Binary file not shown.
201 KB
Binary file not shown.

src/CMakeLists.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.13)
66
## LIBRARY-PROJECT
77
## name and version
88
###############################################################################
9-
project(VStreamer VERSION 1.1.0 LANGUAGES CXX)
9+
project(VStreamer VERSION 1.1.1 LANGUAGES CXX)
1010

1111

1212

@@ -52,7 +52,6 @@ target_include_directories(${PROJECT_NAME} PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
5252
## LINK LIBRARIES
5353
## linking all dependencies
5454
###############################################################################
55-
target_link_libraries(${PROJECT_NAME} Frame)
5655
target_link_libraries(${PROJECT_NAME} ConfigReader)
5756
target_link_libraries(${PROJECT_NAME} VOverlay)
5857
target_link_libraries(${PROJECT_NAME} VCodec)

src/VStreamerVersion.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
#define VSTREAMER_MAJOR_VERSION 1
44
#define VSTREAMER_MINOR_VERSION 1
5-
#define VSTREAMER_PATCH_VERSION 0
5+
#define VSTREAMER_PATCH_VERSION 1
66

7-
#define VSTREAMER_VERSION "1.1.0"
7+
#define VSTREAMER_VERSION "1.1.1"

0 commit comments

Comments
 (0)