dropout-dl/CMakeLists.txt

18 lines
485 B
CMake
Raw Normal View History

2022-09-11 00:19:41 +00:00
cmake_minimum_required(VERSION 3.23)
project(dropout-dl)
2022-09-11 00:19:41 +00:00
set(CMAKE_CXX_STANDARD 17)
add_executable(dropout-dl src/episode.cpp src/main.cpp)
2022-09-11 00:19:41 +00:00
IF (EXISTS "firefox_profile")
target_link_libraries(dropout-dl curl sqlite3)
add_compile_definitions(DROPOUT_DL_SQLITE)
ELSEIF(EXISTS "chrome_profile")
target_link_libraries(dropout-dl curl sqlite3 gcrypt)
add_compile_definitions(DROPOUT_DL_SQLITE DROPOUT_DL_GCRYPT)
ELSE()
target_link_libraries(dropout-dl curl)
ENDIF()