mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-09-10 16:33:15 +08:00

Ancient versions of CMake required else(), endif(), and similar block termination commands to have arguments matching the command starting the block. This is no longer the preferred style.
7 lines
131 B
CMake
7 lines
131 B
CMake
|
|
find_package(Tvmet)
|
|
if (TVMET_FOUND)
|
|
include_directories(${TVMET_INCLUDE_DIR})
|
|
btl_add_bench(btl_tvmet main.cpp OFF)
|
|
endif ()
|