2023-12-24 14:39:12 +01:00
|
|
|
cmake_minimum_required(VERSION 3.26)
|
|
|
|
|
project(const_container)
|
|
|
|
|
|
2023-12-30 22:56:29 +01:00
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
2023-12-24 14:39:12 +01:00
|
|
|
|
|
|
|
|
add_library(const_container INTERFACE "${CMAKE_CURRENT_LIST_DIR}/include/const_vector.hpp"
|
|
|
|
|
include/helper.h)
|
|
|
|
|
target_include_directories(const_container INTERFACE "${CMAKE_CURRENT_LIST_DIR}/include")
|
2023-12-30 22:24:49 +01:00
|
|
|
|
|
|
|
|
add_executable(const_container_test test/test_main.cpp)
|
|
|
|
|
target_link_libraries(const_container_test PRIVATE const_container)
|