1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-08-04 07:01:46 +02:00

Initial implementation of basic TCP/UDP sockets.

This commit is contained in:
Sandu Liviu Catalin
2020-04-20 04:46:05 +03:00
parent 8a927419c2
commit 5393b62892
20 changed files with 4533 additions and 6 deletions

View File

@@ -16,7 +16,7 @@ if(CMAKE_VERSION VERSION_LESS "3.1")
endif()
else()
# Apparently the above does not work with cmake from on debian 8
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14")
# Try the standard method as well
set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD_REQUIRED ON)