MTLT is a header-only template matrix library that supports different data types, and has been C++ standard since 11
git clone https://github.com/Microsoft/vcpkg.git
.\vcpkg\bootstrap-vcpkg.bat
vcpkg install mtltThen configure in your project CMakeLists.txt
cmake_minimum_required(VERSION 3.5...3.16)
project(PROJECT)
find_package(mtlt REQUIRED)
add_executable(${PROJECT_NAME} main.cc)
target_link_libraries(${PROJECT_NAME} PRIVATE mtlt::mtlt)Write simple source code in main.cc for check
#include <mtlt/matrix.h>
#include <mtlt/print.h> // For mtlt::print
int main() {
mtlt::matrix<int> matrix(3, 3, {
1, 2, 3,
4, 5, 6,
7, 8, 9
});
mtlt::print(matrix);
}Build your program using cmake
mkdir build
cd build
cmake .. -DCMAKE_TOOLCHAIN_FILE=[vcpkg_root]/scripts/buildsystems/vcpkg.cmake
cmake --build .mkdir third_party
cd third_party
git submodule add https://github.com/tonitaga/Matrix-Template-Library-CPP.gitConfigure CMakeLists.txt
add_subdirectory(third_party/MTLT)
target_link_libraries(${PROJECT_NAME} PRIVATE mtlt::mtlt)Build your program using cmake
git submodule update --init
mkdir build
cd build
cmake ..
cmake --build .