Zakladna test verzia

This commit is contained in:
2021-08-18 06:24:49 +02:00
parent 16b26bf681
commit 1efcffabe0
7 changed files with 815 additions and 0 deletions

9
Makefile.windows Normal file
View File

@@ -0,0 +1,9 @@
#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