mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-07-23 05:14:26 +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.
8 lines
169 B
CMake
8 lines
169 B
CMake
|
|
find_package(Boost)
|
|
if (Boost_FOUND)
|
|
include_directories(${Boost_INCLUDE_DIRS})
|
|
include_directories(${Boost_INCLUDES})
|
|
btl_add_bench(btl_ublas main.cpp)
|
|
endif ()
|