Linq
Linq copied to clipboard
How to install this library in ubuntu
I want to use this library in ubuntu but how can i install this cmake based library ?
git clone https://github.com/pfultz2/Linq
cd Linq
cmake .
sudo make install
(sudo is needed to copy lib to your include directory) and then add to your CMakeLists
find_package(Linq)
target_link_libraries(yourLib linq::linq)