Skip to content

Commit

Permalink
WIP.5
Browse files Browse the repository at this point in the history
  • Loading branch information
hebasto committed Oct 29, 2024
1 parent d1ea642 commit 41a78f5
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion cmake/module/FindLibevent.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,23 @@ find_package_handle_standard_args(Libevent
REQUIRED_VARS Libevent_DIR
VERSION_VAR Libevent_VERSION
)
unset(_libevent_components core extra)
unset(_libevent_components)

mark_as_advanced(Libevent_DIR)
mark_as_advanced(_event_h)
mark_as_advanced(_event_lib)

if(TARGET libevent::core)
message("================== libevent::core is GOOD")
endif()

if(TARGET libevent::extra)
message("================== libevent::extra is GOOD")
endif()

if(TARGET libevent::pthreads)
message("================== libevent::pthreads is GOOD")
endif()


return()
Expand Down

0 comments on commit 41a78f5

Please sign in to comment.