Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ elseif(UNIX)
add_compile_definitions(SELAURA_LINUX)
endif()

set(CLIENT_VERSION "0.11")
set(CLIENT_VERSION "0.20")

if (CMAKE_BUILD_TYPE STREQUAL "Release")
set(DEVELOPER_MODE "")
Expand Down Expand Up @@ -118,6 +118,11 @@ FetchContent_Declare(
GIT_REPOSITORY https://github.com/ocornut/imgui.git
GIT_TAG features/shadows
)
FetchContent_Declare(
spdlog
GIT_REPOSITORY https://github.com/gabime/spdlog.git
GIT_TAG v1.x
)

if (MSVC)
FetchContent_Declare(
Expand All @@ -136,7 +141,7 @@ endif()
set(DOBBY_DEBUG OFF)
set(DOBBY_GENERATE_SHARED OFF)

FetchContent_MakeAvailable(fmt entt typesafe libhat magic_enum LuaBridge glm cpp-i18n)
FetchContent_MakeAvailable(fmt entt typesafe libhat magic_enum LuaBridge glm cpp-i18n spdlog)
if (MSVC)
FetchContent_MakeAvailable(minhook)
else()
Expand All @@ -159,9 +164,9 @@ if(NOT imgui_POPULATED)
endif()

if(MSVC)
target_link_libraries(Selaura PRIVATE fmt::fmt EnTT::EnTT type_safe libhat ImGui magic_enum LuaBridge glm cpp-i18n minhook)
target_link_libraries(Selaura PRIVATE fmt::fmt EnTT::EnTT type_safe libhat ImGui magic_enum LuaBridge glm cpp-i18n spdlog minhook)
else()
target_link_libraries(Selaura PRIVATE fmt::fmt EnTT::EnTT type_safe libhat ImGui magic_enum LuaBridge glm cpp-i18n dobby_static)
target_link_libraries(Selaura PRIVATE fmt::fmt EnTT::EnTT type_safe libhat ImGui magic_enum LuaBridge glm cpp-i18n spdlog dobby_static)
endif()

if (ANDROID)
Expand Down
33 changes: 0 additions & 33 deletions src/client/event/event.hpp

This file was deleted.

44 changes: 0 additions & 44 deletions src/client/feature/feature.cpp

This file was deleted.

69 changes: 0 additions & 69 deletions src/client/feature/feature.hpp

This file was deleted.

65 changes: 0 additions & 65 deletions src/client/feature/feature_manager.hpp

This file was deleted.

44 changes: 0 additions & 44 deletions src/client/hook/hook.cpp

This file was deleted.

29 changes: 0 additions & 29 deletions src/client/hook/hook.hpp

This file was deleted.

55 changes: 0 additions & 55 deletions src/client/hook/hook_manager.hpp

This file was deleted.

Loading
Loading