replay: refactor Event to remove the readers (#32252)

Refactor struct Event to remove the MessageReader from it
old-commit-hash: a824bd75ef
This commit is contained in:
Dean Lee
2024-04-20 02:15:34 +08:00
committed by GitHub
parent 0850f536cb
commit 4b2a00ef73
10 changed files with 76 additions and 86 deletions

View File

@@ -9,8 +9,6 @@ if arch == "Darwin":
else:
base_libs.append('OpenCL')
qt_env['CXXFLAGS'] += ["-Wno-deprecated-declarations"]
replay_lib_src = ["replay.cc", "consoleui.cc", "camera.cc", "filereader.cc", "logreader.cc", "framereader.cc", "route.cc", "util.cc"]
replay_lib = qt_env.Library("qt_replay", replay_lib_src, LIBS=base_libs, FRAMEWORKS=base_frameworks)
Export('replay_lib')