Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
oshaked1 committed Jun 17, 2024
1 parent ea09a7e commit d937ca9
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ jobs:
tag_name: ${{ github.event.inputs.tag }}
release_name: ${{ github.event.inputs.tag }}
body: ${{ github.event.inputs.release_body }}
draft: true
prerelease: true
outputs:
upload_url: ${{ steps.create-release.outputs.upload_url }}

Expand Down
2 changes: 2 additions & 0 deletions plugins/epan/tracee-event/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ add_compile_definitions(
$<$<BOOL:${HAVE_SSIZE_T}>:HAVE_SSIZE_T>
)

set(CMAKE_MACOSX_RPATH 1)

add_library(tracee-event MODULE packet-tracee.c postdissectors.c wanted_fields.c internal_defs.c ../wsjson_extensions.c)
set_target_properties(tracee-event PROPERTIES
PREFIX ""
Expand Down
2 changes: 2 additions & 0 deletions plugins/epan/tracee-network-capture/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ add_compile_definitions(
$<$<BOOL:${HAVE_SSIZE_T}>:HAVE_SSIZE_T>
)

set(CMAKE_MACOSX_RPATH 1)

add_library(tracee-network-capture MODULE packet-tracee-network-capture.c ../wsjson_extensions.c)
set_target_properties(tracee-network-capture PROPERTIES
PREFIX ""
Expand Down
4 changes: 3 additions & 1 deletion plugins/wiretap/tracee-json/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,15 @@ add_compile_definitions(
$<$<BOOL:${HAVE_SSIZE_T}>:HAVE_SSIZE_T>
)

set(CMAKE_MACOSX_RPATH 1)

add_library(tracee-json MODULE tracee-json.c)
set_target_properties(tracee-json PROPERTIES
PREFIX ""
SUFFIX "${Wireshark_PLUGIN_SUFFIX_EPAN}"
DEFINE_SYMBOL ""
)
target_link_libraries(tracee-json wiretap)
target_link_libraries(tracee-json wiretap ${GLIB2_LIBRARIES})

# This is the normal installation target to CMAKE_INSTALL_PREFIX. It is relocatable
# using DESTDIR or cmake --install. By default CMAKE_INSTALL_PREFIX should be configured
Expand Down

0 comments on commit d937ca9

Please sign in to comment.