All library dependencies are included as git submodules, this includes
ncurses and a
Signals library. I recommend using
the library as a git submodule within your own project, importing it with CMake,
then linking the TermOx
target to your application. This allows you to lock
the version of TermOx for each project you use it with. The API is still
unstable and installing it on your system may make it less easy to manage across
multiple projects.
cd project-dir/
mkdir external/
git submodule add https://github.com/a-n-t-h-o-n-y/TermOx.git external/TermOx
git submodule update --init --recursive
# CMakeLists.txt
...
add_subdirectory(external/TermOx)
add_executable(hello-world src/main.cpp)
target_link_libraries(hello-world PRIVATE TermOx)
...
// main.cpp
#include <termox/termox.hpp>
int main()
{
return ox::System{}.run<ox::Textbox>("Hello, World!");
}
build/external/TermOx/src/libTermOx.a
external/ncurses-snapshots/output/lib/libncursesw.a
- Also depends on your systems threading library
- May require you to link to
dl
external/TermOx/include/
external/TermOx/external/Signals/include/
external/ncurses-snapshots/output/include/