diff options
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 41e5488..763c44e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,7 +24,7 @@ endif() include(FetchContent) FetchContent_Declare(ftxui GIT_REPOSITORY https://github.com/ArthurSonzogni/ftxui.git - GIT_TAG d301fab1f4ecdd3544ed99b9c98e647d5804c341) + GIT_TAG cdf28903a7781f97ba94d30b79c3a4b0c97ccce7) FetchContent_GetProperties(ftxui) if(NOT ftxui_POPULATED) @@ -33,7 +33,7 @@ if(NOT ftxui_POPULATED) endif() FetchContent_Declare(cpr GIT_REPOSITORY https://github.com/libcpr/cpr.git - GIT_TAG 86545977e719fe3a54c407845e8cd340d15f0fd2) + GIT_TAG 2553fc41450301cd09a9271c8d2c3e0cf3546b73) FetchContent_Declare(json URL https://github.com/nlohmann/json/releases/download/v3.11.2/json.tar.xz URL_HASH SHA256=8c4b26bf4b422252e13f332bc5e388ec0ab5c3443d24399acb675e68278d341f) ##https://github.com/nlohmann/json/releases/latest/download/json.tar.xz @@ -42,7 +42,8 @@ FetchContent_MakeAvailable(json cpr) find_package(SQLite3 REQUIRED) -add_subdirectory(extern/pybind11) +find_package(Python 3.6 COMPONENTS Interpreter Development REQUIRED) +add_subdirectory("extern/pybind11") find_package(Ytdlp REQUIRED RUNTIME) @@ -57,6 +58,7 @@ endif() add_executable(${PROJECT_NAME} +# pybind11_add_module(${PROJECT_NAME} src/main.cpp src/tui.cpp src/invapi.cpp |