diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..cbfa72e --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,12 @@ +cmake_minimum_required(VERSION 3.8) +project(boost-assert LANGUAGES CXX) + +add_library(boost_assert INTERFACE) +add_library(Boost::assert ALIAS boost_assert) + +target_include_directories(boost_assert INTERFACE include) + +target_link_libraries(boost_assert + INTERFACE + Boost::config +)