Add include_httplib.cc to the main test executable (already done in Makefile), and add include_windows_h.cc to the main test executable on Windows to test if including windows.h conflicts with httplib.h.
7 lines
128 B
C++
7 lines
128 B
C++
// Test if including windows.h conflicts with httplib.h
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <windows.h>
|
|
|
|
#include <httplib.h>
|