Files
dependencies/catch2/catch2/__init__.py
github-actions[bot] 7a05367ad5 update catch2 shim
2026-05-01 02:20:43 +00:00

10 lines
277 B
Python

import os
DIR = os.path.join(os.path.dirname(__file__), "install")
INCLUDE_DIR = os.path.join(DIR, "include")
LIB_DIR = DIR # header-only; no libraries
def smoketest():
assert os.path.isfile(os.path.join(INCLUDE_DIR, "catch2", "catch.hpp")), "catch2/catch.hpp not found"