Files
dl/third/OpenMesh/cmake-library/CI/CMakeLists.txt
T
2026-09-16 14:07:40 +08:00

19 lines
410 B
CMake
Vendored

# This CMakeLists only does find_package to test our finders.
# We might want to enable some calls based on what is actually installed on the CI runner.
cmake_minimum_required(VERSION 3.13 FATAL_ERROR)
project(CMakeLibraryCITest)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/../finders")
find_package(GMM)
find_package(Gurobi)
find_package(Mosek)
enable_testing()
add_subdirectory(tests)