From e4923f1cfe166d1f091a1de6444f628fa24080c9 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Wed, 20 Oct 2021 18:38:39 +0100 Subject: [PATCH] Add static_assert as a CMake dependency. As it's now used by core. --- test/cmake_subdir_test/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/test/cmake_subdir_test/CMakeLists.txt b/test/cmake_subdir_test/CMakeLists.txt index ddb7b024..3766f9ca 100644 --- a/test/cmake_subdir_test/CMakeLists.txt +++ b/test/cmake_subdir_test/CMakeLists.txt @@ -10,6 +10,7 @@ add_subdirectory(../.. boostorg/reegx) add_subdirectory(../../../config boostorg/config) add_subdirectory(../../../core boostorg/core) add_subdirectory(../../../assert boostorg/assert) +add_subdirectory(../../../assert boostorg/static_assert) add_subdirectory(../../../throw_exception boostorg/throw_exception) add_subdirectory(../../../predef boostorg/predef)