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.
40 lines
800 B
40 lines
800 B
14 years ago
|
#
|
||
|
# libraries
|
||
|
#
|
||
|
|
||
|
include(FindPackageHandleStandardArgs)
|
||
|
set(HAVE_CONFIG_H True)
|
||
|
add_definitions(-DHAVE_CONFIG_H=1)
|
||
|
|
||
|
find_package(OpenSSL QUIET)
|
||
|
find_package(Threads)
|
||
|
find_library(RT rt)
|
||
|
find_library(DL dl)
|
||
|
|
||
|
if(RT)
|
||
|
set(extra_libs ${extra_libs} ${RT})
|
||
|
endif()
|
||
|
|
||
|
if(DL)
|
||
|
set(extra_libs ${extra_libs} ${DL})
|
||
|
endif()
|
||
|
|
||
|
if(${node_platform} MATCHES freebsd)
|
||
|
find_library(KVM NAMES kvm)
|
||
|
set(extra_libs ${extra_libs} KVM)
|
||
|
endif()
|
||
|
|
||
|
if(${OPENSSL_FOUND} MATCHES True)
|
||
|
add_definitions(-DHAVE_OPENSSL=1)
|
||
|
set(HAVE_OPENSSL True)
|
||
|
set(node_extra_src ${node_extra_src} src/node_crypto.cc)
|
||
|
set(extra_libs ${extra_libs} ${OPENSSL_LIBRARIES})
|
||
|
endif()
|
||
|
|
||
|
include("cmake/libc-ares.cmake")
|
||
|
include("cmake/libev.cmake")
|
||
|
include("cmake/libv8.cmake")
|
||
|
|
||
|
add_subdirectory(deps/libeio)
|
||
|
add_subdirectory(deps/http_parser)
|