-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
47 lines (37 loc) · 1.35 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# This file is maintained by zkg. Do not edit.
# Put required additional cmake functionality into plugin.cmake.
cmake_minimum_required(VERSION 3.15.0 FATAL_ERROR)
project(ZeekPluginPerfSupport)
# Establish version numbers in config.h
file(STRINGS "${CMAKE_CURRENT_SOURCE_DIR}/VERSION" VERSION LIMIT_COUNT 1)
string(REGEX REPLACE "[.-]" " " version_numbers ${VERSION})
separate_arguments(version_numbers)
list(GET version_numbers 0 VERSION_MAJOR)
list(GET version_numbers 1 VERSION_MINOR)
list(GET version_numbers 2 VERSION_PATCH)
configure_file("${CMAKE_CURRENT_SOURCE_DIR}/src/config.h.in"
"${CMAKE_CURRENT_BINARY_DIR}/config.h" @ONLY)
# Process any package-specific customizations
include(plugin.cmake OPTIONAL)
include(ZeekPlugin)
zeek_add_plugin(
Zeek
PerfSupport
SOURCES
src/Plugin.cc
src/Trampoline.S
DIST_FILES
README.md
CHANGES
COPYING
VERSION
)
set_property(SOURCE src/Trampoline.S PROPERTY LANGUAGE C)
# Need -fno-omit-frame-pointer, otherwise the stack is borked.
# Zeek also needs to be compiled that way.
target_compile_options(Zeek_PerfSupport PRIVATE -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer)
if ("${PROJECT_SOURCE_DIR}" STREQUAL "${CMAKE_SOURCE_DIR}")
# Allows building rpm/deb packages via "make package" in build dir.
include(ConfigurePackaging)
ConfigurePackaging(${VERSION})
endif ()