Moving addon_*.?pp files to their own dir, step 2...
(fix project files except MSVC++ 9, which I found too complicated to edit)
This commit is contained in:
parent
b1715a0c86
commit
8a120089cf
12 changed files with 28 additions and 28 deletions
|
@ -42,10 +42,10 @@
|
|||
<Unit filename="..\..\src\about.hpp" />
|
||||
<Unit filename="..\..\src\actions.cpp" />
|
||||
<Unit filename="..\..\src\actions.hpp" />
|
||||
<Unit filename="..\..\src\addon_checks.cpp" />
|
||||
<Unit filename="..\..\src\addon_checks.hpp" />
|
||||
<Unit filename="..\..\src\addon_management.cpp" />
|
||||
<Unit filename="..\..\src\addon_management.hpp" />
|
||||
<Unit filename="..\..\src\addon\manager.cpp" />
|
||||
<Unit filename="..\..\src\addon\manager.hpp" />
|
||||
<Unit filename="..\..\src\addon\validation.cpp" />
|
||||
<Unit filename="..\..\src\addon\validation.hpp" />
|
||||
<Unit filename="..\..\src\ai\actions.cpp" />
|
||||
<Unit filename="..\..\src\ai\actions.hpp" />
|
||||
<Unit filename="..\..\src\ai\composite\ai.cpp" />
|
||||
|
|
|
@ -71,10 +71,10 @@
|
|||
<Unit filename="..\..\src\about.hpp" />
|
||||
<Unit filename="..\..\src\actions.cpp" />
|
||||
<Unit filename="..\..\src\actions.hpp" />
|
||||
<Unit filename="..\..\src\addon_checks.cpp" />
|
||||
<Unit filename="..\..\src\addon_checks.hpp" />
|
||||
<Unit filename="..\..\src\addon_management.cpp" />
|
||||
<Unit filename="..\..\src\addon_management.hpp" />
|
||||
<Unit filename="..\..\src\addon\manager.cpp" />
|
||||
<Unit filename="..\..\src\addon\manager.hpp" />
|
||||
<Unit filename="..\..\src\addon\validation.cpp" />
|
||||
<Unit filename="..\..\src\addon\validation.hpp" />
|
||||
<Unit filename="..\..\src\ai\actions.cpp" />
|
||||
<Unit filename="..\..\src\ai\actions.hpp" />
|
||||
<Unit filename="..\..\src\ai\composite\ai.cpp" />
|
||||
|
|
|
@ -420,7 +420,7 @@ OverrideBuildCmd=0
|
|||
BuildCmd=
|
||||
|
||||
[Unit139]
|
||||
FileName=..\..\src\addon_management.cpp
|
||||
FileName=..\..\src\addon\manager.cpp
|
||||
CompileCpp=1
|
||||
Folder=Sources
|
||||
Compile=1
|
||||
|
@ -440,7 +440,7 @@ OverrideBuildCmd=0
|
|||
BuildCmd=
|
||||
|
||||
[Unit141]
|
||||
FileName=..\..\src\addon_checks.cpp
|
||||
FileName=..\..\src\addon\validation.cpp
|
||||
CompileCpp=1
|
||||
Folder=Sources
|
||||
Compile=1
|
||||
|
|
|
@ -213,8 +213,8 @@ add_library(wesnoth-core STATIC EXCLUDE_FROM_ALL ${libwesnoth-core_STAT_SRC})
|
|||
set(wesnoth-main_SRC
|
||||
about.cpp
|
||||
actions.cpp
|
||||
addon_checks.cpp
|
||||
addon_management.cpp
|
||||
addon/manager.cpp
|
||||
addon/validation.cpp
|
||||
ai/actions.cpp
|
||||
ai/composite/ai.cpp
|
||||
ai/composite/aspect.cpp
|
||||
|
@ -624,7 +624,7 @@ ENDIF(ENABLE_SERVER)
|
|||
IF(ENABLE_CAMPAIGN_SERVER)
|
||||
|
||||
SET(campaignd_SRC
|
||||
addon_checks.cpp
|
||||
addon/validation.cpp
|
||||
campaign_server/campaign_server.cpp
|
||||
server/input_stream.cpp
|
||||
network.cpp
|
||||
|
|
|
@ -40,8 +40,8 @@ THELIBS = -L. $(SDL_IMAGE_LIBS) $(SDL_MIXER_LIBS) $(SDL_NET_LIBS) \
|
|||
wesnoth_source = \
|
||||
about.cpp \
|
||||
actions.cpp \
|
||||
addon_checks.cpp \
|
||||
addon_management.cpp \
|
||||
addon/manager.cpp \
|
||||
addon/validation.cpp \
|
||||
ai/actions.cpp \
|
||||
ai/composite/ai.cpp \
|
||||
ai/composite/aspect.cpp \
|
||||
|
@ -351,7 +351,7 @@ wesnothd_DEPENDENCIES=libwesnoth-core.a
|
|||
#############################################################################
|
||||
|
||||
campaignd_SOURCES = \
|
||||
addon_checks.cpp \
|
||||
addon/validation.cpp \
|
||||
campaign_server/campaign_server.cpp \
|
||||
server/input_stream.cpp \
|
||||
network.cpp \
|
||||
|
|
|
@ -126,7 +126,7 @@ libwesnothd_sources = Split("""
|
|||
libwesnothd = env.Library("wesnothd", libwesnothd_sources)
|
||||
|
||||
libcampaignd_sources = Split("""
|
||||
addon_checks.cpp
|
||||
addon/validation.cpp
|
||||
""")
|
||||
libcampaignd = env.Library("campaignd", libcampaignd_sources, OBJPREFIX = "campaignd_")
|
||||
|
||||
|
@ -145,8 +145,8 @@ libcutter = client_env.Library("cutter", libcutter_sources)
|
|||
wesnoth_sources = Split("""
|
||||
about.cpp
|
||||
actions.cpp
|
||||
addon_checks.cpp
|
||||
addon_management.cpp
|
||||
addon/manager.cpp
|
||||
addon/validation.cpp
|
||||
ai/actions.cpp
|
||||
ai/composite/ai.cpp
|
||||
ai/composite/aspect.cpp
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
|
||||
#include "global.hpp"
|
||||
|
||||
#include "addon_management.hpp"
|
||||
#include "addon/manager.hpp"
|
||||
#include "dialogs.hpp"
|
||||
#include "filesystem.hpp"
|
||||
#include "foreach.hpp"
|
||||
|
|
|
@ -13,12 +13,12 @@
|
|||
See the COPYING file for more details.
|
||||
*/
|
||||
|
||||
#ifndef ADDON_MANAGEMENT_HPP_INCLUDED
|
||||
#define ADDON_MANAGEMENT_HPP_INCLUDED
|
||||
#ifndef ADDON_MANAGER_HPP_INCLUDED
|
||||
#define ADDON_MANAGER_HPP_INCLUDED
|
||||
|
||||
class config;
|
||||
|
||||
#include "addon_checks.hpp"
|
||||
#include "addon/validation.hpp"
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
*/
|
||||
|
||||
#include "global.hpp"
|
||||
#include "addon_checks.hpp"
|
||||
#include "addon/validation.hpp"
|
||||
#include "config.hpp"
|
||||
#include "foreach.hpp"
|
||||
|
||||
|
|
|
@ -13,8 +13,8 @@
|
|||
See the COPYING file for more details.
|
||||
*/
|
||||
|
||||
#ifndef ADDON_CHECKS_HPP_INCLUDED
|
||||
#define ADDON_CHECKS_HPP_INCLUDED
|
||||
#ifndef ADDON_VALIDATION_HPP_INCLUDED
|
||||
#define ADDON_VALIDATION_HPP_INCLUDED
|
||||
|
||||
#include <vector>
|
||||
#include <string>
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include "serialization/parser.hpp"
|
||||
#include "serialization/string_utils.hpp"
|
||||
#include "game_config.hpp"
|
||||
#include "addon_checks.hpp"
|
||||
#include "addon/validation.hpp"
|
||||
#include "version.hpp"
|
||||
#include "server/input_stream.hpp"
|
||||
#include "util.hpp"
|
||||
|
|
|
@ -64,7 +64,7 @@
|
|||
#include "network.hpp"
|
||||
#include "playcampaign.hpp"
|
||||
#include "preferences_display.hpp"
|
||||
#include "addon_management.hpp"
|
||||
#include "addon/manager.hpp"
|
||||
#include "replay.hpp"
|
||||
#include "savegame.hpp"
|
||||
#include "sound.hpp"
|
||||
|
|
Loading…
Add table
Reference in a new issue