Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
oshaked1 committed Jun 16, 2024
1 parent ea09a7e commit 773732d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 0 deletions.
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
4 changes: 4 additions & 0 deletions plugins/epan/tracee-event/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ if(CMAKE_COMPILER_IS_GNUCC)
set(CMAKE_C_FLAGS "-Wall -Wextra ${CMAKE_C_FLAGS}")
endif()

if(APPLE)
link_directories(/usr/local/lib)
endif()

add_compile_definitions(
PLUGIN_VERSION=\"${PROJECT_VERSION}\"
$<$<BOOL:${HAVE_SSIZE_T}>:HAVE_SSIZE_T>
Expand Down
4 changes: 4 additions & 0 deletions plugins/epan/tracee-network-capture/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ if(CMAKE_COMPILER_IS_GNUCC)
set(CMAKE_C_FLAGS "-Wall -Wextra ${CMAKE_C_FLAGS}")
endif()

if(APPLE)
link_directories(/usr/local/lib)
endif()

add_compile_definitions(
PLUGIN_VERSION=\"${PROJECT_VERSION}\"
$<$<BOOL:${HAVE_SSIZE_T}>:HAVE_SSIZE_T>
Expand Down
4 changes: 4 additions & 0 deletions plugins/wiretap/tracee-json/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ if(CMAKE_COMPILER_IS_GNUCC)
set(CMAKE_C_FLAGS "-Wall -Wextra ${CMAKE_C_FLAGS}")
endif()

if(APPLE)
link_directories(/usr/local/lib)
endif()

add_compile_definitions(
PLUGIN_VERSION=\"${PROJECT_VERSION}\"
$<$<BOOL:${HAVE_SSIZE_T}>:HAVE_SSIZE_T>
Expand Down

0 comments on commit 773732d

Please sign in to comment.