Browse Source

cmake: Install v8 headers include/node

v0.7.4-release
Nikhil Marathe 15 years ago
committed by Tom Hughes
parent
commit
fa8ffaf9b2
  1. 12
      cmake/libv8.cmake

12
cmake/libv8.cmake

@ -1,4 +1,4 @@
set(V8_INCLUDE_NAMES v8.h v8-debug.h v8-profiler.h)
set(V8_INCLUDE_NAMES v8.h v8-debug.h v8-profiler.h v8stdint.h)
set(V8_LIBRARY_NAMES v8)
if(SHARED_V8)
@ -12,4 +12,14 @@ else()
set(v8_fn "libv8.a")
endif()
set(V8_LIBRARY_PATH "${PROJECT_BINARY_DIR}/deps/v8/${v8_fn}")
install(DIRECTORY
## Do NOT remove the trailing slash
## it is required so that v8 headers are
## copied directly into include/node
## rather than in a subdirectory
## See CMake's install(DIRECTORY) manual for details
${V8_INCLUDE_DIR}/
DESTINATION include/node
)
endif()

Loading…
Cancel
Save