Skip to content

Commit 2cc23d7

Browse files
committed
renamed and added vcpkg
1 parent fe7077c commit 2cc23d7

File tree

3 files changed

+27
-3
lines changed

3 files changed

+27
-3
lines changed

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
cmake_minimum_required(VERSION 3.31)
2-
project(modpack-updater)
2+
project(modpack-manager)
33

44
set(CMAKE_CXX_STANDARD 26)
55

66
find_package(CURL REQUIRED)
77

88
add_executable(
9-
modpack-updater
9+
modpack-manager
1010
src/main.cpp
1111
src/download.cpp
1212
src/download.h
@@ -16,4 +16,4 @@ add_executable(
1616
src/console.h
1717
)
1818

19-
target_link_libraries(modpack-updater PRIVATE CURL::libcurl)
19+
target_link_libraries(modpack-manager PRIVATE CURL::libcurl)

vcpkg-configuration.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"default-registry": {
3+
"kind": "git",
4+
"baseline": "ef7dbf94b9198bc58f45951adcf1f041fcbc5ea0",
5+
"repository": "https://github.com/microsoft/vcpkg"
6+
},
7+
"registries": [
8+
{
9+
"kind": "artifact",
10+
"location": "https://github.com/microsoft/vcpkg-ce-catalog/archive/refs/heads/main.zip",
11+
"name": "microsoft"
12+
}
13+
]
14+
}

vcpkg.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"name": "modpack-manager",
3+
"version": "0.1.0",
4+
"dependencies": [
5+
"curl",
6+
"fmt",
7+
"libzip",
8+
"libcurl"
9+
]
10+
}

0 commit comments

Comments
 (0)