workspace
workspace copied to clipboard
两点修复
就不提pr了,直接在这里说了。
一、https://github.com/Lwhyz/workspace/issues/48 提到的: 把 struct callable_size 当以挪到 struct callable_impl 定义的后面
二、CMakeLists.txt 里面的 install 的位置,按照惯例应该在 install_prefix/include 里面,改为如下:
# Set library installation path
include(GNUInstallDirs)
install(DIRECTORY ${LIB_HEADER} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/${LIB_NAME})