mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-27 07:29:52 +08:00
6fb3e5f176
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 ()
|