mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 10:39:08 +08:00
35 lines
1.5 KiB
CMake
35 lines
1.5 KiB
CMake
if(NOT TARGET unofficial::node-api-headers::node-api-headers)
|
|
if(WIN32)
|
|
add_library(unofficial::node-api-headers::node-api-headers UNKNOWN IMPORTED)
|
|
else()
|
|
add_library(unofficial::node-api-headers::node-api-headers INTERFACE IMPORTED)
|
|
endif()
|
|
|
|
set(node-api-headers_INCLUDE_DIR ${CMAKE_CURRENT_LIST_DIR}/../../include/node)
|
|
|
|
set_target_properties(unofficial::node-api-headers::node-api-headers PROPERTIES
|
|
INTERFACE_INCLUDE_DIRECTORIES "${node-api-headers_INCLUDE_DIR}"
|
|
)
|
|
|
|
if(APPLE)
|
|
set_target_properties(unofficial::node-api-headers::node-api-headers PROPERTIES
|
|
INTERFACE_LINK_OPTIONS "LINKER:SHELL:-undefined dynamic_lookup"
|
|
)
|
|
endif()
|
|
|
|
if(WIN32)
|
|
find_library(node-api-headers_LIBRARY_RELEASE NAMES node PATHS "${CMAKE_CURRENT_LIST_DIR}/../../lib" NO_DEFAULT_PATH REQUIRED)
|
|
set_target_properties(unofficial::node-api-headers::node-api-headers PROPERTIES
|
|
IMPORTED_LOCATION_RELEASE "${node-api-headers_LIBRARY_RELEASE}"
|
|
IMPORTED_CONFIGURATIONS RELEASE
|
|
)
|
|
if("@VCPKG_BUILD_TYPE@" STREQUAL "")
|
|
find_library(node-api-headers_LIBRARY_DEBUG NAMES node PATHS "${CMAKE_CURRENT_LIST_DIR}/../../debug/lib" NO_DEFAULT_PATH REQUIRED)
|
|
set_target_properties(unofficial::node-api-headers::node-api-headers PROPERTIES
|
|
IMPORTED_LOCATION_DEBUG "${node-api-headers_LIBRARY_DEBUG}"
|
|
)
|
|
set_property(TARGET unofficial::node-api-headers::node-api-headers APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
|
|
endif()
|
|
endif()
|
|
endif()
|