.cpp -> .cc
This commit is contained in:
parent
bf81e34938
commit
8e628ec884
54 changed files with 63 additions and 63 deletions
|
@ -1,54 +1,54 @@
|
|||
client_src = [
|
||||
'../shared/crypto.cpp',
|
||||
'../shared/geom.cpp',
|
||||
'../shared/glemu.cpp',
|
||||
'../shared/stream.cpp',
|
||||
'../shared/tools.cpp',
|
||||
'../shared/zip.cpp',
|
||||
'../engine/aa.cpp',
|
||||
'../engine/bih.cpp',
|
||||
'../engine/blend.cpp',
|
||||
'../engine/client.cpp',
|
||||
'../engine/command.cpp',
|
||||
'../engine/console.cpp',
|
||||
'../engine/dynlight.cpp',
|
||||
'../engine/grass.cpp',
|
||||
'../engine/light.cpp',
|
||||
'../engine/main.cpp',
|
||||
'../engine/material.cpp',
|
||||
'../engine/menus.cpp',
|
||||
'../engine/movie.cpp',
|
||||
'../engine/normal.cpp',
|
||||
'../engine/octa.cpp',
|
||||
'../engine/octaedit.cpp',
|
||||
'../engine/octarender.cpp',
|
||||
'../engine/physics.cpp',
|
||||
'../engine/pvs.cpp',
|
||||
'../engine/rendergl.cpp',
|
||||
'../engine/renderlights.cpp',
|
||||
'../engine/rendermodel.cpp',
|
||||
'../engine/renderparticles.cpp',
|
||||
'../engine/rendersky.cpp',
|
||||
'../engine/rendertext.cpp',
|
||||
'../engine/renderva.cpp',
|
||||
'../engine/server.cpp',
|
||||
'../engine/serverbrowser.cpp',
|
||||
'../engine/shader.cpp',
|
||||
'../engine/stain.cpp',
|
||||
'../engine/texture.cpp',
|
||||
'../engine/ui.cpp',
|
||||
'../engine/water.cpp',
|
||||
'../engine/world.cpp',
|
||||
'../engine/worldio.cpp',
|
||||
'../game/ai.cpp',
|
||||
'../game/client.cpp',
|
||||
'../game/entities.cpp',
|
||||
'../game/game.cpp',
|
||||
'../game/render.cpp',
|
||||
'../game/scoreboard.cpp',
|
||||
'../game/server.cpp',
|
||||
'../game/waypoint.cpp',
|
||||
'../game/weapon.cpp'
|
||||
'../shared/crypto.cc',
|
||||
'../shared/geom.cc',
|
||||
'../shared/glemu.cc',
|
||||
'../shared/stream.cc',
|
||||
'../shared/tools.cc',
|
||||
'../shared/zip.cc',
|
||||
'../engine/aa.cc',
|
||||
'../engine/bih.cc',
|
||||
'../engine/blend.cc',
|
||||
'../engine/client.cc',
|
||||
'../engine/command.cc',
|
||||
'../engine/console.cc',
|
||||
'../engine/dynlight.cc',
|
||||
'../engine/grass.cc',
|
||||
'../engine/light.cc',
|
||||
'../engine/main.cc',
|
||||
'../engine/material.cc',
|
||||
'../engine/menus.cc',
|
||||
'../engine/movie.cc',
|
||||
'../engine/normal.cc',
|
||||
'../engine/octa.cc',
|
||||
'../engine/octaedit.cc',
|
||||
'../engine/octarender.cc',
|
||||
'../engine/physics.cc',
|
||||
'../engine/pvs.cc',
|
||||
'../engine/rendergl.cc',
|
||||
'../engine/renderlights.cc',
|
||||
'../engine/rendermodel.cc',
|
||||
'../engine/renderparticles.cc',
|
||||
'../engine/rendersky.cc',
|
||||
'../engine/rendertext.cc',
|
||||
'../engine/renderva.cc',
|
||||
'../engine/server.cc',
|
||||
'../engine/serverbrowser.cc',
|
||||
'../engine/shader.cc',
|
||||
'../engine/stain.cc',
|
||||
'../engine/texture.cc',
|
||||
'../engine/ui.cc',
|
||||
'../engine/water.cc',
|
||||
'../engine/world.cc',
|
||||
'../engine/worldio.cc',
|
||||
'../game/ai.cc',
|
||||
'../game/client.cc',
|
||||
'../game/entities.cc',
|
||||
'../game/game.cc',
|
||||
'../game/render.cc',
|
||||
'../game/scoreboard.cc',
|
||||
'../game/server.cc',
|
||||
'../game/waypoint.cc',
|
||||
'../game/weapon.cc'
|
||||
]
|
||||
|
||||
threads_dep = dependency('threads')
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
client_src = [
|
||||
'../shared/crypto.cpp',
|
||||
'../shared/stream.cpp',
|
||||
'../shared/tools.cpp',
|
||||
'../engine/command.cpp',
|
||||
'../engine/master.cpp'
|
||||
'../shared/crypto.cc',
|
||||
'../shared/stream.cc',
|
||||
'../shared/tools.cc',
|
||||
'../engine/command.cc',
|
||||
'../engine/master.cc'
|
||||
]
|
||||
|
||||
threads_dep = dependency('threads')
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
client_src = [
|
||||
'../shared/crypto.cpp',
|
||||
'../shared/stream.cpp',
|
||||
'../shared/tools.cpp',
|
||||
'../engine/command.cpp',
|
||||
'../engine/server.cpp',
|
||||
'../engine/worldio.cpp',
|
||||
'../game/entities.cpp',
|
||||
'../game/server.cpp'
|
||||
'../shared/crypto.cc',
|
||||
'../shared/stream.cc',
|
||||
'../shared/tools.cc',
|
||||
'../engine/command.cc',
|
||||
'../engine/server.cc',
|
||||
'../engine/worldio.cc',
|
||||
'../game/entities.cc',
|
||||
'../game/server.cc'
|
||||
]
|
||||
|
||||
threads_dep = dependency('threads')
|
||||
|
|
Loading…
Reference in a new issue