Schematika tokenizer (facet object model version)
  • C++ 96.6%
  • CMake 3.4%
Find a file
2023-10-17 16:13:21 -04:00
.github/workflows github: + workflow 2023-10-17 16:13:21 -04:00
cmake refactor: move impl into .cpp + fix include paths 2023-10-11 19:19:44 -04:00
include/xo/webutil build: fix for header-only callback dep 2023-10-17 16:13:07 -04:00
src/webutil build: fix for header-only callback dep 2023-10-17 16:13:07 -04:00
.gitignore ext .gitignore 2023-10-11 19:20:36 -04:00
CMakeLists.txt refactor: move impl into .cpp + fix include paths 2023-10-11 19:19:44 -04:00
README.md doc: README additions 2023-10-17 15:30:13 -04:00

webutil library (header-only)

Getting Started

build + install dependencies

clone repo

$ git clone git@github.com:Rconybea/xo-webutil.git

build and install

$ cd xo-webutil
$ BUILDDIR=build     # for example
$ mkdir $BUILDDIR
$ cd $BUILDDIR
$ PREFIX=/usr/local  # for example
$ cmake -DCMAKE_MODULE_PATH=${PREFIX}/share/cmake -DCMAKE_INSTALL_PREFIX=${PREFIX} ..
$ make
$ make install

LSP support

$ cd xo-webutil
$ ln -s $BUILDDIR/compile_commands.json