Skip to content

Commit

Permalink
Expose base64 as static lib
Browse files Browse the repository at this point in the history
  • Loading branch information
lhog committed Feb 10, 2024
1 parent a0bdd41 commit 7840b29
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ add_library(pr-downloader
Tracer.cpp
Util.cpp
Version.cpp
lib/base64/base64.cpp
pr-downloader.cpp
)

Expand All @@ -46,6 +45,7 @@ target_link_libraries(pr-downloader
prd::libcurl
ZLIB::ZLIB
prd::minizip
pr-base64
pr-md5
pr-sha1
7zip
Expand Down
1 change: 1 addition & 0 deletions src/lib/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
add_subdirectory(7z)
add_subdirectory(base64)
add_subdirectory(md5)
add_subdirectory(sha1)
add_subdirectory(readerwriterqueue)
3 changes: 3 additions & 0 deletions src/lib/base64/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
add_library(pr-base64 STATIC
base64.cpp
)

0 comments on commit 7840b29

Please sign in to comment.