Skip to content

Commit 4a7ea6f

Browse files
author
Magnus Gustafsson
committed
Peg librist to latest official release (v0.2.0)
1 parent 68ff8e7 commit 4a7ea6f

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

.gitignore

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
cmake-build-*/
21
rist/
3-
cppRISTWrapper.cbp
4-
cppRISTWrapper
5-
cppRISTWrapper.exe
62
libristnet.a
7-
libristnet.lib
8-
project_rist-prefix/
3+
project_rist-prefix/
4+
CMakeCache.txt
5+
CMakeFiles/
6+
Makefile
7+
cmake_install.cmake
8+
compile_commands.json
9+
rist_cpp

CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ cmake_minimum_required(VERSION 3.10)
22
project(rist-cpp)
33
set(CMAKE_C_STANDARD 99)
44
set(CMAKE_CXX_STANDARD 17)
5+
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
56

67
#If no build type is set then force Release
78
IF( NOT CMAKE_BUILD_TYPE )
@@ -19,7 +20,7 @@ include(ExternalProject)
1920
ExternalProject_Add(project_rist
2021
CONFIGURE_COMMAND ""
2122
GIT_REPOSITORY https://code.videolan.org/rist/librist.git
22-
GIT_TAG 6c8ec93ce80d6e3114b443ad147d698e837ced87
23+
GIT_TAG v0.2.0
2324
SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/rist
2425
BINARY_DIR ${CMAKE_CURRENT_SOURCE_DIR}/rist
2526
BUILD_COMMAND mkdir -p ${CMAKE_CURRENT_SOURCE_DIR}/rist/build && cd ${CMAKE_CURRENT_SOURCE_DIR}/rist/build && meson .. --default-library=static && ninja

0 commit comments

Comments
 (0)