Add external libraries to CMakeList.txt c++

I would start with upgrade of CMAKE version. You can use INCLUDE_DIRECTORIES for header location and LINK_DIRECTORIES + TARGET_LINK_LIBRARIES for libraries INCLUDE_DIRECTORIES(your/header/dir) LINK_DIRECTORIES(your/library/dir) rosbuild_add_executable(kinectueye src/kinect_ueye.cpp) TARGET_LINK_LIBRARIES(kinectueye lib1 lib2 lib2 …) note that lib1 is expanded to liblib1.so (on Linux), so use ln to create appropriate links in case you do not have them

Text-to-speech libraries for iPhone [duplicate]

For online,you can use my Google-TTS-Library-For-iOS to achieve your goal. Offline iPhone TTS implementation is easy to do. You can see the details here. There are many paid and free iOS TTS libraries are available . They are , Free (Offline/Online) iphone-tts Note: read “HOW TO USE” section . TTSOverview-iOS flite-1.4-iphone Openears cmu.edu RJGoogleTTS VocalKit … Read more