diff options
author | 3gg <3gg@shellblade.net> | 2024-02-13 17:51:51 -0800 |
---|---|---|
committer | 3gg <3gg@shellblade.net> | 2024-02-13 17:51:51 -0800 |
commit | e153be0be2fb8df6656292daab3fa59963c76737 (patch) | |
tree | 7cca3fc134553017cb3c259db1dca33c98556109 /cassert/CMakeLists.txt | |
parent | 84bdfa4a23f5b8daa7921541b007518bc634be0f (diff) |
Let memory allocators trap by default when attempting to allocate beyond capacity.
Diffstat (limited to 'cassert/CMakeLists.txt')
-rw-r--r-- | cassert/CMakeLists.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cassert/CMakeLists.txt b/cassert/CMakeLists.txt new file mode 100644 index 0000000..855f261 --- /dev/null +++ b/cassert/CMakeLists.txt | |||
@@ -0,0 +1,8 @@ | |||
1 | cmake_minimum_required(VERSION 3.0) | ||
2 | |||
3 | project(cassert) | ||
4 | |||
5 | add_library(cassert INTERFACE) | ||
6 | |||
7 | target_include_directories(cassert INTERFACE | ||
8 | include) | ||