1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-11-30 16:34:30 +00:00
openmw/cmake/FindCXXOPTS.cmake
2023-04-28 16:22:17 +02:00

14 lines
406 B
CMake

# Try to find CXXOPTS library
# Once done this will define
# CXXOPTS_FOUND - System has the all required components.
# CXXOPTS_INCLUDE_DIRS - Include directory necessary for using the required components headers.
# CXXOPTS_LIBRARIES - Link these to use CXXOPTS.
#
include(LibFindMacros)
libfind_pkg_detect(CXXOPTS cxxopts
FIND_PATH cxxopts.hpp
)
libfind_process(CXXOPTS)