Including PAL library in CMake project

Including PAL library in CMake project

Hi, 

I have installed the PAL library like it was explained in the ReadMe file. I can correctly use the Exlorer app and adjust the settings and have a video stream. But now i want to include it inside my project (which is in c++) and i have to link the library to be able to use it inside my cpp files with this command #include "PAL.h". I tried inside my CMake file :
target_link_libraries(myLib PAL)
target_link_libraries(myLib -L/DreamVu/PAL/)
target_link_libraries(myLib -L/DreamVu/PAL/lib/)

Yet it doesnt seem to work. What should i do?

Thank you.