2
0
mirror of https://github.com/boostorg/align.git synced 2026-02-02 08:12:07 +00:00
Files
align/CMakeLists.txt
Andrey Semashev 51b248c215 Remove dependencies on Boost.StaticAssert.
Boost.StaticAssert has been merged into Boost.Config, so remove
the dependency.
2026-01-22 14:16:16 -05:00

22 lines
525 B
CMake

# Copyright 2018 Glen Joseph Fernandes
# (glenjofe@gmail.com)
#
# Distributed under the Boost Software License, Version 1.0.
# (http://www.boost.org/LICENSE_1_0.txt)
cmake_minimum_required(VERSION 3.5...3.20)
project(boost_align VERSION "${BOOST_SUPERPROJECT_VERSION}" LANGUAGES CXX)
add_library(boost_align INTERFACE)
add_library(Boost::align ALIAS boost_align)
target_include_directories(boost_align INTERFACE include)
target_link_libraries(boost_align INTERFACE
Boost::assert
Boost::config
Boost::core
)