diff --git a/Minecraft.Client/Common/Consoles_App.h b/Minecraft.Client/Common/Consoles_App.h index 83264732..4d7b13d2 100644 --- a/Minecraft.Client/Common/Consoles_App.h +++ b/Minecraft.Client/Common/Consoles_App.h @@ -22,7 +22,7 @@ using namespace std; #include "./GameRules/GameRuleManager.h" #include "../SkinBox.h" #include "../ArchiveFile.h" -#include "../FolderFile.h" +#include "lce_filesystem/FolderFile.h" typedef struct _JoinFromInviteData { diff --git a/Minecraft.Client/cmake/sources/Common.cmake b/Minecraft.Client/cmake/sources/Common.cmake index b8d26ac9..287a2fcf 100644 --- a/Minecraft.Client/cmake/sources/Common.cmake +++ b/Minecraft.Client/cmake/sources/Common.cmake @@ -278,8 +278,6 @@ source_group("Common/UI" FILES ${_MINECRAFT_CLIENT_COMMON_COMMON_UI}) set(_MINECRAFT_CLIENT_COMMON_COMMON_UI_ALL_PLATFORMS "${CMAKE_CURRENT_SOURCE_DIR}/ArchiveFile.cpp" "${CMAKE_CURRENT_SOURCE_DIR}/ArchiveFile.h" - "${CMAKE_CURRENT_SOURCE_DIR}/FolderFile.cpp" - "${CMAKE_CURRENT_SOURCE_DIR}/FolderFile.h" "${BASE_DIR}/UI/IUIController.h" "${BASE_DIR}/UI/IUIScene_AbstractContainerMenu.cpp" "${BASE_DIR}/UI/IUIScene_AbstractContainerMenu.h" diff --git a/cmake/CommonSources.cmake b/cmake/CommonSources.cmake index e6ad7d3d..71282f44 100644 --- a/cmake/CommonSources.cmake +++ b/cmake/CommonSources.cmake @@ -1,6 +1,8 @@ set(_INCLUDE_LCE_FILESYSTEM "${CMAKE_SOURCE_DIR}/include/lce_filesystem/lce_filesystem.cpp" "${CMAKE_SOURCE_DIR}/include/lce_filesystem/lce_filesystem.h" + "${CMAKE_SOURCE_DIR}/include/lce_filesystem/FolderFile.cpp" + "${CMAKE_SOURCE_DIR}/include/lce_filesystem/FolderFile.h" ) source_group("include/lce_filesystem" FILES ${_INCLUDE_LCE_FILESYSTEM}) @@ -12,4 +14,4 @@ source_group("Common" FILES ${_INCLUDE_BUILDVER}) set(SOURCES_COMMON ${_INCLUDE_LCE_FILESYSTEM} ${_INCLUDE_BUILDVER} -) \ No newline at end of file +) diff --git a/Minecraft.Client/FolderFile.cpp b/include/lce_filesystem/FolderFile.cpp similarity index 100% rename from Minecraft.Client/FolderFile.cpp rename to include/lce_filesystem/FolderFile.cpp diff --git a/Minecraft.Client/FolderFile.h b/include/lce_filesystem/FolderFile.h similarity index 100% rename from Minecraft.Client/FolderFile.h rename to include/lce_filesystem/FolderFile.h