mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-02 09:40:15 +00:00
e6637e81cc
* CMake: add USE_PANDOC, USE_DOXYGEN options #101 * README: mention rust * start integrating rust into build #101 * CMake: add USE_NETWORK option for cargo * Debian: build-dep on doxygen * rust: colloquy checks in Cargo.lock * extract NCKEY defines into their own include * colloquy: use clap to parse CLI args * CMake: unify option namespace * Python: update include path * Rust: fix up --frozen workings for -DUSE_NETWORK=off * CMake: abstract out colloquy a little * Sync direct.hh to the New Way
15 lines
276 B
C
15 lines
276 B
C
#ifndef NOTCURSES_TEST_MAIN
|
|
#define NOTCURSES_TEST_MAIN
|
|
|
|
#include <unistd.h>
|
|
#include <doctest/doctest.h>
|
|
#include "version.h"
|
|
#include <notcurses/notcurses.h>
|
|
|
|
char* find_data(const char* datum);
|
|
|
|
// some tests can only run in a utf8 environment
|
|
bool enforce_utf8();
|
|
|
|
#endif
|