mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
317 B
11 lines
317 B
14 years ago
|
if(SHARED_LIBEV)
|
||
|
find_library(LIBEV_LIBRARY NAMES ev)
|
||
|
find_path(LIBEV_INCLUDE_DIR ev.h
|
||
|
PATH_SUFFIXES include/ev include
|
||
|
) # Find header
|
||
|
find_package_handle_standard_args(libev DEFAULT_MSG LIBEV_LIBRARY LIBEV_INCLUDE_DIR)
|
||
|
else()
|
||
|
add_subdirectory(deps/libev)
|
||
|
set(LIBEV_INCLUDE_DIR deps/libev)
|
||
|
endif()
|