mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-29 19:19:01 +08:00
fbc96bcdf8
* port is building for x64-windows * Add file endings * Reformat manifest file * Add versions * Remove comment * Check host system instead of target * fix user fs pollution & allow nodejs tool to have the same triplet as target has * x86-windows now builds * Support find_package (TARGET_SOURCES still todo) * add win_delay_hook.cc * license for nodejs * reformat * reformat * Update node-api.json * nodejs port ver increment * fix versions * fix versions * Fix find_library/find_path review comments * node-api-config.cmake => unofficial-node-api-config.cmake * remove vcpkg_execute_npm_command.cmake * update git-tree in node-api.json * fix node triplet * remove obvious comment * Update node-api.json * Revert everything related to vcpkg-tool-nodejs * fix port-version of vcpkg-tool-nodejs in baseline.json * Update node-api.json * ban arm * fix EOF * Update node-api.json * Tweaks for Linux failure debugging * Update node-api.json * Reformat with vscode cmake formatter * Even more debug logging * add <node_root>/bin to search * Update node-api.json * Add debugging for 2-nd error encountered * update ver * update * update ver * add nodejs tool to path * update ver * use prefix npm option * add version * move things to node tool dir (temporary) * add ver * Add CMAKE_JS_LIB emptyness check * add version * separate node root ad node bin directories * update node-api-config.cmake * add ver * typo-fi * update version * remove debug logging * update ver * do not use system cmake * add ver * rename vars * Update ver * Add comment * add-version * Now downloads cmake-js from github, but deps aren't downloaded (wip) * add version * Seems to work except lodash (wip) * add version * license null (wip) * license null -reformat- (wip) * add ver * Add todo (wip) * add ver * install lodash, new error now related to yargs isn't being built (wip) * add version (wip) * fix (wip) * add version (wip) * Cleanup, will try one thing (wip) * no cmake-js ver, now install includes (wip) * ⌛ closing temporary, I'll get back to this later ⌛. at least I know what to do * test * baseline * format * fill with zeros * update supports * correct url for win * addver * better handle arch and os * ver * update * update * add-todo * add win support * ver * qol * ver * add-sha * ver * update * update * fix-license * fix-license * add sha * add sha * linux-arm64 * linux-arm64 * sha512 for arm * sha512 for arm * remove imported sources * remove imported sources * apply suggestion * add ver * fix eof * add ver
24 lines
883 B
CMake
24 lines
883 B
CMake
if(WIN32)
|
|
add_library(unofficial::node-api::node-api UNKNOWN IMPORTED)
|
|
else()
|
|
add_library(unofficial::node-api::node-api INTERFACE IMPORTED)
|
|
endif()
|
|
|
|
find_path(node-api_INCLUDE_DIR
|
|
NAMES node.h
|
|
PATHS "${CMAKE_CURRENT_LIST_DIR}/../../include/node"
|
|
NO_DEFAULT_PATH
|
|
REQUIRED)
|
|
set_target_properties(unofficial::node-api::node-api PROPERTIES
|
|
INTERFACE_INCLUDE_DIRECTORIES "${node-api_INCLUDE_DIR}"
|
|
)
|
|
|
|
if(WIN32)
|
|
find_library(node-api_LIBRARY_RELEASE NAMES node PATHS "${CMAKE_CURRENT_LIST_DIR}/../../lib" NO_DEFAULT_PATH REQUIRED)
|
|
find_library(node-api_LIBRARY_DEBUG NAMES node PATHS "${CMAKE_CURRENT_LIST_DIR}/../../debug/lib" NO_DEFAULT_PATH REQUIRED)
|
|
set_target_properties(unofficial::node-api::node-api PROPERTIES
|
|
IMPORTED_LOCATION_DEBUG "${node-api_LIBRARY_DEBUG}"
|
|
IMPORTED_LOCATION_RELEASE "${node-api_LIBRARY_RELEASE}"
|
|
)
|
|
endif()
|