vcpkg/ports/nanomsg/portfile.cmake
gerard-ryan-immersaview 6db51d86a9
[vcpkg_replace_string] warn unchanged by call (#34719)
If a call to `vcpkg_replace_string` makes no changes i.e doesn't
effectively replace a string, A warning is logged.

This should also help identify ports that no longer need these calls to
fix things in `.pc` files etc.
2024-06-19 14:07:05 -07:00

67 lines
1.8 KiB
CMake

vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO nanomsg/nanomsg
REF "${VERSION}"
SHA512 cc119acafe6e000b75299e866b4bace56ec6d8c90e7843ad773efad7b534296d6baf2b75b107c70a0e4fd4cee9763315d87b6f354676b7915732961b89c3adcb
HEAD_REF master
)
string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "static" NN_STATIC_LIB)
if("tool" IN_LIST FEATURES)
set(NN_ENABLE_NANOCAT ON)
else()
set(NN_ENABLE_NANOCAT OFF)
endif()
vcpkg_cmake_configure(
SOURCE_PATH ${SOURCE_PATH}
OPTIONS
-DCMAKE_DISABLE_FIND_PACKAGE_Git=TRUE
-DNN_STATIC_LIB=${NN_STATIC_LIB}
-DNN_TESTS=OFF
-DNN_TOOLS=OFF
-DNN_ENABLE_DOC=OFF
-DNN_ENABLE_NANOCAT=${NN_ENABLE_NANOCAT}
)
vcpkg_cmake_install()
file(STRINGS ${SOURCE_PATH}/.version NN_PACKAGE_VERSION)
vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/nanomsg-${NN_PACKAGE_VERSION})
vcpkg_replace_string(
${CURRENT_PACKAGES_DIR}/share/${PORT}/nanomsg-config.cmake
"lib/cmake/nanomsg-${NN_PACKAGE_VERSION}"
"share/nanomsg"
)
if(NN_ENABLE_NANOCAT)
vcpkg_copy_tools(TOOL_NAMES nanocat AUTO_CLEAN)
endif()
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include ${CURRENT_PACKAGES_DIR}/debug/share)
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
vcpkg_replace_string(
${CURRENT_PACKAGES_DIR}/include/nanomsg/nn.h
"defined(NN_STATIC_LIB)"
"1 // defined(NN_STATIC_LIB)"
)
endif()
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static" OR NOT VCPKG_TARGET_IS_WINDOWS)
vcpkg_replace_string(
${CURRENT_PACKAGES_DIR}/share/${PORT}/nanomsg-config.cmake
"set_and_check(nanomsg_BINDIR \${VCPKG_IMPORT_PREFIX}/bin)"
""
IGNORE_UNCHANGED
)
endif()
configure_file(${SOURCE_PATH}/COPYING ${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright COPYONLY)
vcpkg_copy_pdbs()
vcpkg_fixup_pkgconfig()