git clone https://gitee.com/l565353780l/NumCpp.git
cd <path-to-NumCpp-folder>
mkdir build
cd build
mkdir installed
cmake -DCMAKE_INSTALL_PREFIX=./installed ..
make install
set(NumCpp_DIR "<path-to-NumCpp-installed-folder>/share/NumCpp/cmake")
find_package(NumCpp REQUIRED)
target_link_libraries(${PROJECT_NAME}
NumCpp::NumCpp
)