Skip to content

Commit

Permalink
move some utility files to utils folder
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeck88 committed Jun 27, 2014
1 parent 10a6f4b commit ed3453f
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 10 deletions.
6 changes: 3 additions & 3 deletions projectfiles/CodeBlocks/wesnoth.cbp
Expand Up @@ -965,9 +965,9 @@
<Unit filename="..\..\src\serialization\validator.hpp" />
<Unit filename="..\..\src\settings.cpp" />
<Unit filename="..\..\src\settings.hpp" />
<Unit filename="..\..\src\sha1.cpp" />
<Unit filename="..\..\src\sha1.hpp" />
<Unit filename="..\..\src\shared_object.hpp" />
<Unit filename="..\..\src\utils\sha1.cpp" />
<Unit filename="..\..\src\utils\sha1.hpp" />
<Unit filename="..\..\src\utils\shared_object.hpp" />
<Unit filename="..\..\src\show_dialog.cpp" />
<Unit filename="..\..\src\show_dialog.hpp" />
<Unit filename="..\..\src\side_filter.cpp" />
Expand Down
6 changes: 3 additions & 3 deletions projectfiles/VC9/wesnoth.vcproj
Expand Up @@ -20953,15 +20953,15 @@
>
</File>
<File
RelativePath="..\..\src\sha1.cpp"
RelativePath="..\..\src\utils\sha1.cpp"
>
</File>
<File
RelativePath="..\..\src\sha1.hpp"
RelativePath="..\..\src\utils\sha1.hpp"
>
</File>
<File
RelativePath="..\..\src\shared_object.hpp"
RelativePath="..\..\src\utils\shared_object.hpp"
>
</File>
<File
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Expand Up @@ -874,7 +874,7 @@ set(wesnoth-main_SRC
scripting/lua_api.cpp
scripting/lua_types.cpp
settings.cpp
sha1.cpp
utils/sha1.cpp
side_filter.cpp
statistics.cpp
statistics_dialog.cpp
Expand Down
2 changes: 1 addition & 1 deletion src/SConscript
Expand Up @@ -508,7 +508,6 @@ wesnoth_sources = Split("""
scripting/lua_api.cpp
scripting/lua_types.cpp
settings.cpp
sha1.cpp
side_filter.cpp
statistics.cpp
statistics_dialog.cpp
Expand Down Expand Up @@ -536,6 +535,7 @@ wesnoth_sources = Split("""
unit_id.cpp
unit_map.cpp
unit_types.cpp
utils/sha1.cpp
variable.cpp
variant.cpp
whiteboard/action.cpp
Expand Down
2 changes: 1 addition & 1 deletion src/config_cache.cpp
Expand Up @@ -22,7 +22,7 @@
#include "log.hpp"
#include "marked-up_text.hpp"
#include "show_dialog.hpp"
#include "sha1.hpp"
#include "utils/sha1.hpp"
#include "serialization/binary_or_text.hpp"
#include "serialization/parser.hpp"
#include "version.hpp"
Expand Down
1 change: 1 addition & 0 deletions src/tstring.cpp
Expand Up @@ -26,6 +26,7 @@
#include "tstring.hpp"
#include "gettext.hpp"
#include "log.hpp"
#include "utils/shared_object.hpp"
#include <boost/functional/hash.hpp>

#include <boost/multi_index_container.hpp>
Expand Down
2 changes: 1 addition & 1 deletion src/tstring.hpp
Expand Up @@ -15,7 +15,7 @@
#ifndef TSTRING_H_INCLUDED
#define TSTRING_H_INCLUDED

#include "shared_object.hpp"
#include "utils/shared_object.hpp"

#include <string>

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit ed3453f

Please sign in to comment.