Added CLI11 library via gitmodule

This commit is contained in:
2026-06-14 12:19:24 -04:00
parent b74b9127bc
commit a2ac669803
4 changed files with 25 additions and 4 deletions

View File

@@ -5,7 +5,12 @@ project(SpotifyDownloader LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
add_executable(spotify-downloader
src/main.cpp
)
add_subdirectory(external/CLI11)
target_link_libraries(spotify-downloader PRIVATE CLI11::CLI11)