mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-17 23:11:06 +00:00
27 lines
356 B
Lua
27 lines
356 B
Lua
|
|
|
|
project ("Test_enet_server")
|
|
|
|
language "C++"
|
|
|
|
kind "ConsoleApp"
|
|
targetdir "../../../bin"
|
|
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",
|
|
}
|
|
|