Files
usbserial-dw/Makefile.windows
2021-08-18 06:24:49 +02:00

10 lines
337 B
Makefile

#Using MinGW distro from http://nuwen.net/mingw.html that contains boost precompiled
all:
g++ -O2 -std=c++11 -c main.cpp -D_WIN32_WINNT=0x0501
g++ -O2 -std=c++11 -c TimeoutSerial.cpp -D_WIN32_WINNT=0x0501
g++ -o timeout.exe main.o TimeoutSerial.o -s -lwsock32 -lws2_32 -lboost_system
clean:
del timeout.exe main.o TimeoutSerial.o