The Prolog inspired language for our title project.
Go to file
Chris Cromer d86b1e7dbd
Merge pull request #2 from cromerc/develop
Develop
2023-11-14 13:26:47 -03:00
doc update the documentation locations 2023-02-18 20:14:59 -03:00
examples add 2 examples 2023-02-28 22:15:01 -03:00
sqlite Remove SQLite from repo. 2023-05-02 23:21:56 -04:00
src update facts and rules recursively 2023-03-05 23:04:17 -03:00
.clang-format format to 80 columns for terminal display 2023-02-20 22:05:57 -03:00
.dockerignore add docker build and instructions 2023-11-14 13:25:38 -03:00
.gitignore add out directory to ignore file for git 2023-11-14 13:25:12 -03:00
.pre-commit-config.yaml add lexer, parser, and ast tree 2022-10-17 22:26:36 -03:00
Dockerfile add docker build and instructions 2023-11-14 13:25:38 -03:00
LICENSE initial commit 2022-10-02 20:30:58 -03:00
README.md add docker build and instructions 2023-11-14 13:25:38 -03:00
meson.build Prepare 1.0.4. 2023-05-02 23:26:01 -04:00
meson_options.txt restructure library location 2023-02-16 02:26:14 -03:00
sqlite.sh Add script and instructions to download SQLite when building. 2023-05-02 23:24:43 -04:00

README.md

Obelisk

The Obelisk project is a declarative language designed to help with the implementation of Artificial Intelligence using an easy to use logical programming language.

Build requirements

  • Meson
  • Ninja
  • LLVM 14
  • sqlite 3 library and headers(in debian libsqlite3-dev)
  • C++ 17
  • C 17

Build

Normal build

./sqlite.sh
meson builddir
cd buildir
ninja

This process will generate the binary "obelisk", a shared library "libobelisk.so", and a static library "libobelisk.a".

The binary is used to compile and create obelisk knowledge bases and the the libraries can be linked against to consult the Obelisk knowledge base from any software that can link with the libraries.

Build in docker image

docker build ./ --output=out

This will create a directory called out which will contain the binaries, libraries, and generated documentation.

Install

ninja install

This will install the Obelisk cli and the Obelisk library globally. You can also copy the resulting shared and/or static library to a project to link against and use an Obelisk knowledge base.

License

Obelisk is licensed under the The 3-Clause BSD License.

Authors

  • Christopher Cromer
  • Martín Araneda