Skip to content

Commit

Permalink
Removed dummy_video
Browse files Browse the repository at this point in the history
Doesn't seem to be used by anything.
  • Loading branch information
Vultraz committed Dec 10, 2016
1 parent 0f2b2f5 commit 9d51c40
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 56 deletions.
6 changes: 0 additions & 6 deletions src/CMakeLists.txt
Expand Up @@ -1183,7 +1183,6 @@ set(exploder_SRC
tools/exploder_utils.cpp
tools/exploder_cutter.cpp
tools/exploder_composer.cpp
tools/dummy_video.cpp
sdl/utils.cpp
tracer.cpp
)
Expand All @@ -1203,7 +1202,6 @@ set(cutter_SRC
tools/cutter.cpp
tools/exploder_utils.cpp
tools/exploder_cutter.cpp
tools/dummy_video.cpp
sdl/utils.cpp
tracer.cpp
)
Expand All @@ -1220,7 +1218,6 @@ set_target_properties(cutter PROPERTIES OUTPUT_NAME ${BINARY_PREFIX}cutter${BINA
install(TARGETS cutter DESTINATION ${BINDIR})

set(schema_generator_SRC
tools/dummy_video.cpp
tools/schema/schema_generator.cpp
tools/schema/sourceparser.cpp
tools/schema/error_container.cpp
Expand All @@ -1244,7 +1241,6 @@ set(schema_validator_SRC
tools/validator/validator_tool.cpp
serialization/schema_validator.cpp
serialization/validator.cpp
tools/dummy_video.cpp
tools/schema/tag.cpp
filesystem_boost.cpp
filesystem_common.cpp
Expand All @@ -1270,7 +1266,6 @@ set(wesmage_SRC
wesmage/exit.cpp
wesmage/filter.cpp
wesmage/options.cpp
tools/dummy_video.cpp
tools/exploder_utils.cpp
sdl/utils.cpp
tracer.cpp
Expand Down Expand Up @@ -1392,7 +1387,6 @@ if(ENABLE_TESTS)
# Due to its unique nature the program is never installed.
set(create_images_SRC
tests/create_images.cpp
tools/dummy_video.cpp
tools/exploder_utils.cpp
sdl/utils.cpp
tracer.cpp
Expand Down
13 changes: 3 additions & 10 deletions src/SConscript
Expand Up @@ -149,11 +149,6 @@ libwesnoth_sources = Split("""

libwesnoth = client_env.Library("wesnoth", libwesnoth_sources)

dummy_video_sources = Split("""
tools/dummy_video.cpp
""")
libdummy_video = test_env.Library("dummy_video", dummy_video_sources)

libcampaignd_sources = Split("""
addon/validation.cpp
""")
Expand Down Expand Up @@ -665,20 +660,20 @@ env.WesnothProgram("wesnothd", wesnothd_sources + [libwesnoth_core, env["wesnoth
cutter_sources = Split("""
tools/cutter.cpp
""")
client_env.WesnothProgram("cutter", cutter_sources + [libcutter, libwesnoth_core, libwesnoth_sdl, libdummy_video, libwesnoth], have_client_prereqs, LIBS = ["$LIBS", "png"])
client_env.WesnothProgram("cutter", cutter_sources + [libcutter, libwesnoth_core, libwesnoth_sdl, libwesnoth], have_client_prereqs, LIBS = ["$LIBS", "png"])

exploder_sources = Split("""
tools/exploder_composer.cpp
tools/exploder.cpp
""")
client_env.WesnothProgram("exploder", exploder_sources + [libcutter, libwesnoth_core, libwesnoth_sdl, libdummy_video, libwesnoth], have_client_prereqs, LIBS = ["$LIBS", "png"])
client_env.WesnothProgram("exploder", exploder_sources + [libcutter, libwesnoth_core, libwesnoth_sdl, libwesnoth], have_client_prereqs, LIBS = ["$LIBS", "png"])

schema_generator_sources = Split("""
tools/schema/error_container.cpp
tools/schema/schema_generator.cpp
tools/schema/sourceparser.cpp
""")
client_env.WesnothProgram("schema_generator", schema_generator_sources + [libwesnoth_core, libdummy_video], have_client_prereqs)
client_env.WesnothProgram("schema_generator", schema_generator_sources + [libwesnoth_core], have_client_prereqs)

test_utils_sources = Split("""
tests/utils/fake_display.cpp
Expand All @@ -689,7 +684,6 @@ test_utils_sources = Split("""
wesmage_sources = Split("""
sdl/utils.cpp
sdl/window.cpp
tools/dummy_video.cpp
tools/exploder_utils.cpp
tracer.cpp
wesmage/exit.cpp
Expand Down Expand Up @@ -739,7 +733,6 @@ create_images_sources = Split("""
sdl/utils.cpp
sdl/window.cpp
tests/create_images.cpp
tools/dummy_video.cpp
tools/exploder_utils.cpp
tracer.cpp
""")
Expand Down
40 changes: 0 additions & 40 deletions src/tools/dummy_video.cpp

This file was deleted.

0 comments on commit 9d51c40

Please sign in to comment.