diff options
| author | Marvin W <git@larma.de> | 2022-08-20 22:16:28 +0200 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2023-10-01 21:28:28 +0200 |
| commit | cb13545b47bccfea2ab9e5468f781fd8ff9d7897 (patch) | |
| tree | bdd0a3343a2f31d71bff6dd48e18e0ec69ba33d8 /plugins | |
| parent | 6e27f8553ffd2f69488c5ce5f3fc582e7b9c41d5 (diff) | |
| download | dino-cb13545b47bccfea2ab9e5468f781fd8ff9d7897.tar.gz | |
CMake: Fix version checks
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/rtp/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/rtp/CMakeLists.txt b/plugins/rtp/CMakeLists.txt index c8652c54..13586ce3 100644 --- a/plugins/rtp/CMakeLists.txt +++ b/plugins/rtp/CMakeLists.txt @@ -15,11 +15,11 @@ find_packages(RTP_PACKAGES REQUIRED set(RTP_DEFINITIONS) -if(GstRtp_VERSION VERSION_GREATER "1.16") +if(GstRtp_VERSION VERSION_GREATER_EQUAL "1.16") set(RTP_DEFINITIONS ${RTP_DEFINITIONS} GST_1_16) endif() -if(GstRtp_VERSION VERSION_GREATER "1.18") +if(GstRtp_VERSION VERSION_GREATER_EQUAL "1.18") set(RTP_DEFINITIONS ${RTP_DEFINITIONS} GST_1_18) endif() |
