diff options
| author | Tero Kontkanen <tero.k@granitedevices.com> | 2017-09-03 17:19:54 +0300 |
|---|---|---|
| committer | Tero Kontkanen <tero.k@granitedevices.com> | 2017-09-03 17:19:54 +0300 |
| commit | ff18ca01b8d23b1eb7b7d0ed67b7d068e4a5a64e (patch) | |
| tree | c3a7ca40f3dc252d1ef06b9a8ae483bb029465ef | |
| parent | 31c4878e96f3bfdf6f3a8b83d7b7e0d5d7990a55 (diff) | |
| download | SimpleMotionV2-ff18ca01b8d23b1eb7b7d0ed67b7d068e4a5a64e.tar.gz SimpleMotionV2-ff18ca01b8d23b1eb7b7d0ed67b7d068e4a5a64e.zip | |
Add missing TCP IP library for win32 in .pri file
| -rw-r--r-- | SimpleMotionV2.pri | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/SimpleMotionV2.pri b/SimpleMotionV2.pri index 304d404..4c9378b 100644 --- a/SimpleMotionV2.pri +++ b/SimpleMotionV2.pri @@ -14,6 +14,9 @@ HEADERS += $$PWD/simplemotion_private.h\ $$PWD/drivers/serial/pcserialport.h $$PWD/busdevice.h $$PWD/simplemotion.h $$PWD/sm485.h $$PWD/simplemotion_defs.h \
$$PWD/bufferedmotion.h $$PWD/drivers/tcpip/tcpclient.h $$PWD/devicedeployment.h
+win32 {
+ LIBS+=-lws2_32 #needed for tcp ip API
+}
#If FTDI D2XX support is enabled
greaterThan(SUPPORT_FTDI_D2XX_DRIVER, 0+) {
|
