You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
628 B
C++
25 lines
628 B
C++
// stdafx.cpp : source file that includes just the standard includes
|
|
// MQTTClient.pch will be the pre-compiled header
|
|
// stdafx.obj will contain the pre-compiled type information
|
|
|
|
#include "stdafx.h"
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
// #pragma comment(lib, "mariadbclient.lib")
|
|
#pragma comment(lib, "mosquitto.lib")
|
|
#pragma comment(lib, "jsoncpp.lib")
|
|
// #pragma comment(lib, "mariadbclient.lib" )
|
|
#pragma comment(lib, "Secur32.lib")
|
|
#pragma comment(lib, "Ws2_32.lib")
|
|
#pragma comment(lib, "Crypt32.lib")
|
|
#pragma comment(lib, "Shlwapi.lib")
|
|
#ifdef _DEBUG
|
|
#pragma comment(lib, "zlibd.lib")
|
|
#else
|
|
#pragma comment(lib, "zlib.lib")
|
|
#endif
|
|
|
|
|
|
#endif |