From 9d53072e32c60aa51784182a0a608ce204cab9e6 Mon Sep 17 00:00:00 2001 From: ComradeCrow Date: Wed, 12 Apr 2023 14:32:15 -0700 Subject: breaking changes broke everything --- CMakeLists.txt | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 4500127..bf5b4da 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,6 +3,7 @@ cmake_minimum_required(VERSION 3.26.0) project(ytcpp LANGUAGES CXX VERSION 0.0.1 + HOMEPAGE_URL https://crow.port0.org/git/comradecrow/ytcpp.git ) set(EXECUTABLE_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/bin) @@ -15,11 +16,10 @@ endif() include(FetchContent) FetchContent_Declare(cpr GIT_REPOSITORY https://github.com/libcpr/cpr.git GIT_TAG c4713a704ca12237485ecbfec185f76c2a81bd09) -FetchContent_MakeAvailable(cpr) FetchContent_Declare(ftxui GIT_REPOSITORY https://github.com/ArthurSonzogni/ftxui.git - GIT_TAG v4.0.0 + GIT_TAG d301fab1f4ecdd3544ed99b9c98e647d5804c341 ) FetchContent_GetProperties(ftxui) @@ -29,10 +29,14 @@ if(NOT ftxui_POPULATED) endif() FetchContent_Declare(json URL https://github.com/nlohmann/json/releases/download/v3.11.2/json.tar.xz) -FetchContent_MakeAvailable(json) + +FetchContent_MakeAvailable(json cpr) find_package(SQLite3 REQUIRED) +# find_package(pybind11 REQUIRED) +add_subdirectory(extern/pybind11) + add_executable(${PROJECT_NAME} src/main.cpp) target_include_directories(${PROJECT_NAME} PRIVATE src) @@ -43,4 +47,5 @@ target_link_libraries(${PROJECT_NAME} PRIVATE ftxui::component PRIVATE nlohmann_json::nlohmann_json PRIVATE SQLite::SQLite3 + PRIVATE pybind11::embed ) -- cgit 1.4.1-2-gfad0 value='range'>range
path: root/test/tc_keyapi.py
blob: 79d89fa5e94f398140f6b0f45757c8f4eca64b12 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45