changed all -lpthread to -pthread

This commit is contained in:
Dhanya Maliakal
2017-05-01 09:39:19 +02:00
parent c6cb499758
commit 78d1504d66
7 changed files with 14 additions and 14 deletions

View File

@ -4,10 +4,10 @@
This file is an example of how to implement the slsDetectorUsers class
You can compile it linking it to the slsDetector library
gcc mainClient.cpp -L lib -l SlsDetector -lm -lpthread
gcc mainClient.cpp -L lib -l SlsDetector -lm -pthread
where lib is the location of libSlsDetector.so
gcc mainClient.cpp -L . -l SlsDetector -lm -lpthread -o users
gcc mainClient.cpp -L . -l SlsDetector -lm -pthread -o users
*/