Bump cmake submodule for 3.15 requirement

This commit is contained in:
Arne Welzel 2023-10-09 16:20:00 +02:00
parent 4a8f868471
commit 2ed89ff84f
5 changed files with 10 additions and 4 deletions

4
NEWS
View file

@ -22,6 +22,10 @@ Breaking Changes
ZEEK_SPICY_MODULE_PATH are now skipped. Dot directories explicitly listed in ZEEK_SPICY_MODULE_PATH are now skipped. Dot directories explicitly listed in
ZEEK_PLUGIN_PATH or ZEEK_SPICY_MODULE_PATH are not skipped. ZEEK_PLUGIN_PATH or ZEEK_SPICY_MODULE_PATH are not skipped.
- External plugins are now required to raise their minimum required CMake version
to 3.15. This was previously warned about, but has caused user confusion in
errors cases around the IN_LIST operator.
New Functionality New Functionality
----------------- -----------------

2
cmake

@ -1 +1 @@
Subproject commit 164243f93eea1a20cb4b918e7f168ff89ca71d62 Subproject commit cc923365ead6b827354e70d4a03d531fe3f5e9d3

View file

@ -1,6 +1,6 @@
project(Zeek-Plugin-Demo-Foo) project(Zeek-Plugin-Demo-Foo)
cmake_minimum_required(VERSION 3.5) cmake_minimum_required(VERSION 3.15 FATAL_ERROR)
if (NOT ZEEK_DIST) if (NOT ZEEK_DIST)
message(FATAL_ERROR "ZEEK_DIST not set") message(FATAL_ERROR "ZEEK_DIST not set")

View file

@ -1,4 +1,6 @@
cmake_minimum_required(VERSION 3.5 FATAL_ERROR) project(Zeek-Plugin-Demo-Python)
cmake_minimum_required(VERSION 3.15 FATAL_ERROR)
find_package(PythonLibs REQUIRED) find_package(PythonLibs REQUIRED)

View file

@ -1,6 +1,6 @@
project(Zeek-Plugin-Demo-Version) project(Zeek-Plugin-Demo-Version)
cmake_minimum_required(VERSION 3.15) cmake_minimum_required(VERSION 3.15 FATAL_ERROR)
if (NOT ZEEK_DIST) if (NOT ZEEK_DIST)
message(FATAL_ERROR "ZEEK_DIST not set") message(FATAL_ERROR "ZEEK_DIST not set")