File tree Expand file tree Collapse file tree 3 files changed +27
-3
lines changed
Expand file tree Collapse file tree 3 files changed +27
-3
lines changed Original file line number Diff line number Diff line change 11cmake_minimum_required (VERSION 3.31)
2- project (modpack-updater )
2+ project (modpack-manager )
33
44set (CMAKE_CXX_STANDARD 26)
55
66find_package (CURL REQUIRED)
77
88add_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)
Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " modpack-manager" ,
3+ "version" : " 0.1.0" ,
4+ "dependencies" : [
5+ " curl" ,
6+ " fmt" ,
7+ " libzip" ,
8+ " libcurl"
9+ ]
10+ }
You can’t perform that action at this time.
0 commit comments