mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Bump cmake submodule for 3.15 requirement
This commit is contained in:
parent
4a8f868471
commit
2ed89ff84f
5 changed files with 10 additions and 4 deletions
4
NEWS
4
NEWS
|
@ -22,6 +22,10 @@ Breaking Changes
|
|||
ZEEK_SPICY_MODULE_PATH are now skipped. Dot directories explicitly listed in
|
||||
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
|
||||
-----------------
|
||||
|
||||
|
|
2
cmake
2
cmake
|
@ -1 +1 @@
|
|||
Subproject commit 164243f93eea1a20cb4b918e7f168ff89ca71d62
|
||||
Subproject commit cc923365ead6b827354e70d4a03d531fe3f5e9d3
|
|
@ -1,6 +1,6 @@
|
|||
project(Zeek-Plugin-Demo-Foo)
|
||||
|
||||
cmake_minimum_required(VERSION 3.5)
|
||||
cmake_minimum_required(VERSION 3.15 FATAL_ERROR)
|
||||
|
||||
if (NOT ZEEK_DIST)
|
||||
message(FATAL_ERROR "ZEEK_DIST not set")
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
project(Zeek-Plugin-Demo-Version)
|
||||
|
||||
cmake_minimum_required(VERSION 3.15)
|
||||
cmake_minimum_required(VERSION 3.15 FATAL_ERROR)
|
||||
|
||||
if (NOT ZEEK_DIST)
|
||||
message(FATAL_ERROR "ZEEK_DIST not set")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue