Linq icon indicating copy to clipboard operation
Linq copied to clipboard

How to install this library in ubuntu

Open jaychanda opened this issue 5 years ago • 1 comments

I want to use this library in ubuntu but how can i install this cmake based library ?

jaychanda avatar Apr 25 '19 12:04 jaychanda

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)

amosialek avatar Dec 22 '19 15:12 amosialek