arena allocator + incremental garbage collector
  • C++ 98.4%
  • CMake 1.6%
Find a file
2024-03-15 19:35:02 -04:00
.github/workflows github: + workflow 2023-10-17 16:13:21 -04:00
cmake build: streamline CMAKE_MODULE_PATH interaction 2024-03-15 19:35:02 -04:00
include/xo/webutil build: fix for header-only callback dep 2023-10-17 16:13:07 -04:00
src/webutil build: support symlink-enabled variation 2023-10-19 17:10:28 -04:00
.gitignore build: streamline CMAKE_MODULE_PATH interaction 2024-03-15 19:35:02 -04:00
CMakeLists.txt build: streamline CMAKE_MODULE_PATH interaction 2024-03-15 19:35:02 -04:00
README.md drop false header-only claim ! 2023-10-17 16:16:14 -04:00

webutil library

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