Skip to content

Commit

Permalink
Refactor source files location for easier navigation
Browse files Browse the repository at this point in the history
  • Loading branch information
phunkyfish committed Jun 22, 2024
1 parent 037a49b commit 6e49e41
Show file tree
Hide file tree
Showing 32 changed files with 39 additions and 39 deletions.
54 changes: 27 additions & 27 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,45 +25,45 @@ set(DEPLIBS
${JSONCPP_LIBRARIES})

set(BASE_SOURCES
src/base/Cache.cpp)
src/stalker/base/Cache.cpp)

set(SOURCES
src/addon.cpp
src/AddonSettings.cpp
src/ChannelManager.cpp
src/CWatchdog.cpp
src/GuideManager.cpp
src/HTTPSocket.cpp
src/InstanceSettings.cpp
src/SAPI.cpp
src/SessionManager.cpp
src/SettingsMigration.cpp
src/StalkerInstance.cpp
src/Utils.cpp
src/XMLTV.cpp)
src/stalker/AddonSettings.cpp
src/stalker/ChannelManager.cpp
src/stalker/CWatchdog.cpp
src/stalker/GuideManager.cpp
src/stalker/HTTPSocket.cpp
src/stalker/InstanceSettings.cpp
src/stalker/SAPI.cpp
src/stalker/SessionManager.cpp
src/stalker/SettingsMigration.cpp
src/stalker/Utils.cpp
src/stalker/XMLTV.cpp)

set(STALKER_SOURCES
${BASE_SOURCES}
${SOURCES})

set(STALKER_HEADERS
src/addon.h
src/AddonSettings.h
src/ChannelManager.h
src/CWatchdog.h
src/Error.h
src/GuideManager.h
src/HTTPSocket.h
src/InstanceSettings.h
src/SAPI.h
src/SessionManager.h
src/SettingsMigration.h
src/StalkerInstance.h
src/Utils.h
src/XMLTV.h
src/base/Cache.h
src/base/ChannelManager.h
src/base/GuideManager.h)
src/stalker/AddonSettings.h
src/stalker/ChannelManager.h
src/stalker/CWatchdog.h
src/stalker/Error.h
src/stalker/GuideManager.h
src/stalker/HTTPSocket.h
src/stalker/InstanceSettings.h
src/stalker/SAPI.h
src/stalker/SessionManager.h
src/stalker/SettingsMigration.h
src/stalker/Utils.h
src/stalker/XMLTV.h
src/stalker/base/Cache.h
src/stalker/base/ChannelManager.h
src/stalker/base/GuideManager.h)

build_addon(pvr.stalker STALKER DEPLIBS)

Expand Down
2 changes: 1 addition & 1 deletion src/StalkerInstance.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

#include "StalkerInstance.h"

#include "Utils.h"
#include "stalker/Utils.h"
#include "libstalkerclient/util.h"

#include <chrono>
Expand Down
18 changes: 9 additions & 9 deletions src/StalkerInstance.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@

#pragma once

#include "CWatchdog.h"
#include "ChannelManager.h"
#include "Error.h"
#include "GuideManager.h"
#include "SAPI.h"
#include "SessionManager.h"
#include "InstanceSettings.h"
#include "XMLTV.h"
#include "base/Cache.h"
#include "stalker/CWatchdog.h"
#include "stalker/ChannelManager.h"
#include "stalker/Error.h"
#include "stalker/GuideManager.h"
#include "stalker/SAPI.h"
#include "stalker/SessionManager.h"
#include "stalker/InstanceSettings.h"
#include "stalker/XMLTV.h"
#include "stalker/base/Cache.h"
#include "libstalkerclient/identity.h"
#include "libstalkerclient/stb.h"

Expand Down
2 changes: 1 addition & 1 deletion src/addon.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

#include "addon.h"
#include "StalkerInstance.h"
#include "SettingsMigration.h"
#include "stalker/SettingsMigration.h"

using namespace Stalker;

Expand Down
2 changes: 1 addition & 1 deletion src/addon.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

#include <memory>

#include "AddonSettings.h"
#include "stalker/AddonSettings.h"

namespace Stalker
{
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 6e49e41

Please sign in to comment.