first draft of premake/cmake build files for clsocket (tiny cross-platform TCP socket library)

This commit is contained in:
Erwin Coumans
2017-02-19 11:48:01 -08:00
parent 957266b121
commit 4faa6613c9
4 changed files with 38 additions and 29 deletions

View File

@@ -251,6 +251,7 @@ end
include "../examples/ExtendedTutorials"
include "../examples/SharedMemory"
include "../examples/ThirdPartyLibs/BussIK"
include "../examples/MultiThreading"
if _OPTIONS["lua"] then
@@ -270,6 +271,11 @@ end
include "../examples/ThirdPartyLibs/midi"
end
if not _OPTIONS["no_clsocket"] then
include "../examples/ThirdPartyLibs/clsocket"
defines {"BT_ENABLE_CLSOCKET"}
end
if not _OPTIONS["no-enet"] then
include "../examples/ThirdPartyLibs/enet"
include "../test/enet/nat_punchthrough/client"