Skip to content
This repository has been archived by the owner on Oct 7, 2024. It is now read-only.

Commit

Permalink
add autoupdater
Browse files Browse the repository at this point in the history
  • Loading branch information
Prevter committed Feb 24, 2024
1 parent 4372208 commit 0f66a32
Show file tree
Hide file tree
Showing 20 changed files with 4,648 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,6 @@
[submodule "libs/json"]
path = libs/json
url = https://github.com/nlohmann/json
[submodule "libs/imgui-markdown"]
path = libs/imgui-markdown
url = https://github.com/juliettef/imgui_markdown
3 changes: 3 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -140,10 +140,12 @@ add_library(
add_subdirectory(libs/minhook)
add_subdirectory(libs/glfw)
add_subdirectory(libs/spdlog)
add_subdirectory(libs/curl)

target_include_directories(
${PROJECT_NAME}-Standalone
PRIVATE
libs/imgui-markdown
libs/glew/include
)

Expand All @@ -152,6 +154,7 @@ target_link_libraries(
${PROJECT_NAME}
minhook
spdlog::spdlog
libcurl
)

# Set "OPENHACK_STANDALONE" to 1
Expand Down
4 changes: 4 additions & 0 deletions libs/curl/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
add_library(libcurl INTERFACE)

target_include_directories(libcurl INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/include)
target_link_libraries(libcurl INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/libcurl.lib)
Loading

0 comments on commit 0f66a32

Please sign in to comment.