mirror of https://github.com/procxx/kepka.git
Remove core includes path, use full header path core/xxx
This commit is contained in:
parent
dde3013878
commit
a8e998a3e5
|
|
@ -569,7 +569,7 @@ include_directories(ThirdParty) # For minizip/ but we use fully-qualified
|
||||||
include_directories(ThirdParty/GSL/include ThirdParty/variant/include
|
include_directories(ThirdParty/GSL/include ThirdParty/variant/include
|
||||||
ThirdParty/emoji_suggestions ThirdParty/libtgvoip)
|
ThirdParty/emoji_suggestions ThirdParty/libtgvoip)
|
||||||
|
|
||||||
include_directories(SourceFiles SourceFiles/core)
|
include_directories(SourceFiles)
|
||||||
|
|
||||||
include_directories(${OPENAL_INCLUDE_DIRS} ${ZLIB_INCLUDE_DIRS} ${OPENSSL_INCLUDE_DIR}
|
include_directories(${OPENAL_INCLUDE_DIRS} ${ZLIB_INCLUDE_DIRS} ${OPENSSL_INCLUDE_DIR}
|
||||||
${OPUS_INCLUDE_DIR} ${FFMPEG_INCLUDE_DIRS} ${ALSA_INCLUDE_DIRS} ${PULSEAUDIO_INCLUDE_DIR})
|
${OPUS_INCLUDE_DIR} ${FFMPEG_INCLUDE_DIRS} ${ALSA_INCLUDE_DIRS} ${PULSEAUDIO_INCLUDE_DIR})
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
|
||||||
#endif
|
#endif
|
||||||
#include "core/version.h"
|
#include "core/version.h"
|
||||||
#include "settings.h"
|
#include "settings.h"
|
||||||
#include "utils.h"
|
#include "core/utils.h"
|
||||||
|
|
||||||
constexpr str_const AppName = "${KEPKA_APPNAME}";
|
constexpr str_const AppName = "${KEPKA_APPNAME}";
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
|
||||||
#include "base/timer.h"
|
#include "base/timer.h"
|
||||||
#include "mtproto/rpc_sender.h"
|
#include "mtproto/rpc_sender.h"
|
||||||
#include "structs.h"
|
#include "structs.h"
|
||||||
#include "single_timer.h"
|
#include "core/single_timer.h"
|
||||||
|
|
||||||
namespace App {
|
namespace App {
|
||||||
void quit();
|
void quit();
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "base/lambda.h"
|
#include "base/lambda.h"
|
||||||
#include "single_timer.h"
|
#include "core/single_timer.h"
|
||||||
#include "styles/style_widgets.h"
|
#include "styles/style_widgets.h"
|
||||||
#include "ui/twidget.h"
|
#include "ui/twidget.h"
|
||||||
#include "ui/animation.h"
|
#include "ui/animation.h"
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
|
||||||
#include <type_traits>
|
#include <type_traits>
|
||||||
#include "base/observer.h"
|
#include "base/observer.h"
|
||||||
#include "structs.h"
|
#include "structs.h"
|
||||||
#include "single_timer.h"
|
#include "core/single_timer.h"
|
||||||
|
|
||||||
class AuthSession;
|
class AuthSession;
|
||||||
class History;
|
class History;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue