mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-04-29 07:14:12 +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
123 B
CMake
7 lines
123 B
CMake
|
|
find_package(MTL4)
|
|
if (MTL4_FOUND)
|
|
include_directories(${MTL4_INCLUDE_DIR})
|
|
btl_add_bench(btl_mtl4 main.cpp)
|
|
endif ()
|