Remove dependency lines-are-beautiful.
Very beautiful but I don't need this right now.
This commit is contained in:
parent
5f41af76b4
commit
7adb4748f5
4 changed files with 0 additions and 12 deletions
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -1,6 +1,3 @@
|
|||
[submodule "lib/lines-are-beautiful"]
|
||||
path = lib/lines-are-beautiful
|
||||
url = https://github.com/ax3l/lines-are-beautiful.git
|
||||
[submodule "lib/simdjson"]
|
||||
path = lib/simdjson
|
||||
url = https://github.com/simdjson/simdjson.git
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
cmake_minimum_required(VERSION 3.10 FATAL_ERROR)
|
||||
project(remarkable_tool LANGUAGES CXX VERSION 1.0.0)
|
||||
|
||||
add_subdirectory("lib/lines-are-beautiful")
|
||||
add_subdirectory("lib/simdjson")
|
||||
|
||||
add_executable(${PROJECT_NAME}
|
||||
|
@ -9,7 +8,6 @@ add_executable(${PROJECT_NAME}
|
|||
)
|
||||
|
||||
target_link_libraries(${PROJECT_NAME}
|
||||
PRIVATE Rmlab::Rmlab
|
||||
PRIVATE simdjson
|
||||
)
|
||||
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
Subproject commit 55696bc76a6d162f96eb650df400aec3bd1b1b1e
|
6
main.cpp
6
main.cpp
|
@ -16,7 +16,6 @@
|
|||
*/
|
||||
|
||||
#include <iostream>
|
||||
#include <rmlab/rmlab.hpp>
|
||||
#include <simdjson.h>
|
||||
#include <string_view>
|
||||
#include <filesystem>
|
||||
|
@ -219,11 +218,6 @@ std::vector<const NotebookInfo*> make_dele_list (const Node& tree) {
|
|||
int main() {
|
||||
using std::string_view;
|
||||
|
||||
//rmlab::Notebook doc(BASE_PATH "a4bcfe83-a91d-485b-b27c-2a06aa287641");
|
||||
//rmlab::Notebook doc(BASE_PATH "aa90b0e7-5c1a-42fe-930f-dad9cf3363cc");
|
||||
|
||||
//std::cout << "Document version: " << doc.version << '\n';
|
||||
|
||||
auto notebooks = build_notebook_infos(BASE_PATH);
|
||||
|
||||
//naive linear delete
|
||||
|
|
Loading…
Reference in a new issue