mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-16 06:30:05 +00:00
9708392322
add UDP network connection for physics client <-> server. also set spinning friction in rolling friction demo (otherwise objects may keep on spinning forever)
26 lines
338 B
Lua
26 lines
338 B
Lua
|
|
|
|
project ("Test_enet_chat_client")
|
|
|
|
language "C++"
|
|
|
|
kind "ConsoleApp"
|
|
|
|
includedirs {"../../../../examples/ThirdPartyLibs/enet/include"}
|
|
|
|
if os.is("Windows") then
|
|
defines { "WIN32" }
|
|
links {"Ws2_32","Winmm"}
|
|
end
|
|
if os.is("Linux") then
|
|
end
|
|
if os.is("MacOSX") then
|
|
end
|
|
|
|
links {"enet"}
|
|
|
|
files {
|
|
"main.cpp",
|
|
}
|
|
|