Rough attempts to build stuff from scratch
Find a file
2023-10-02 16:27:40 +01:00
apps Fix linux build. 2023-02-26 18:23:21 +00:00
infra Fix wayland build - make x11 build optional. 2023-10-02 16:27:40 +01:00
plugins Fix linux build. 2023-02-26 18:23:21 +00:00
src Fix wayland build - make x11 build optional. 2023-10-02 16:27:40 +01:00
test Fix wayland build - make x11 build optional. 2023-10-02 16:27:40 +01:00
.gitignore Initial directx example. 2023-01-03 20:33:18 +00:00
CMakeLists.txt clean some test targets 2023-03-23 19:07:31 +00:00
LICENSE Update LICENSE 2023-01-23 09:03:51 +00:00
README.md Update README.md 2023-01-23 09:36:31 +00:00

NotesTK

Notes Toolkit (NotesTK) is a set of tools for building applications focused on taking and organising notes, like study or research materials.

Project Goals

  • Cross-platform
  • Low third-party dependencies
  • Permissive licensing
  • Simplicity over performance

Project Status

🚨🚨🚨 The codebase is at a very early/prototype stage and under heavy active development🚨🚨🚨

In addition to feature development I've been using it to get up-to-speed on various media formats and desktop and rendering APIs. It is strongly recommended to only use it as a reading reference.

Expect:

  • No Docs or tagged releases
  • Large commits and significant breaking changes
  • Unreliable/untested APIs
  • Naive/low-performance implementations

The only currently recommended use case is if you are implementing some element of the library functionality and want to see how someone else has tackled it, maybe you will see something useful.

Building

Many project features (e.g. Wayland integration) only build if suitable third-party dependencies are found on the system, otherwise they will be automatically disabled. You can find dependency requirements in the README.md file in each module's srcdirectory.

A minimal set of dependencies for each platform are included below.

Linux

Install dependencies:

sudo apt-get install build-essential pkg-config cmake 

Build:

mkdir build
cd build
cmake $PATH_TO_SOURCE
make
apps/$NAME_OF_APP

Windows

Tested with Visual Studio 17 with 'Desktop Development with C++' tooling, including ATL and Windows SDK 10 (10.0.19041.0). Additionally, install cmake.

mkdir build
cd build
cmake $PATH_TO_SOURCE

You can open the resulting NotesTK.slnin Visual Studio and build.