changed all -lpthread to -pthread

This commit is contained in:
Dhanya Maliakal
2017-04-07 14:24:49 +02:00
parent 1afb9e3e48
commit 9aef802bea
8 changed files with 15 additions and 15 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
*/