-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
33 lines (25 loc) · 838 Bytes
/
CMakeLists.txt
File metadata and controls
33 lines (25 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
cmake_minimum_required(VERSION 3.16.3)
project(cpp_containers)
set(CMAKE_CXX_STANDARD 14)
include_directories(ft_vector)
add_executable(cpp_containers
ft_tester/tester_headers.hpp
ft_tester/tester_stack.cpp
ft_tester/tester_vector.cpp
ft_tester/tester_map.cpp
ft_tester/tester_set.cpp
ft_vector/ft_algorithm.hpp
ft_vector/ft_iterator_utils.hpp
ft_vector/ft_type_traits.hpp
ft_vector/ft_vector.hpp
ft_vector/ft_vector_iterator.hpp
ft_vector/ft_vector_reverse_iterator.hpp
ft_stack/ft_stack.hpp
ft_map/ft_bidirectional_iterator.hpp
ft_map/ft_rev_bidir_iter.hpp
ft_map/ft_map.hpp
ft_map/ft_pair.hpp
ft_map/ft_node.hpp
ft_set/ft_set.hpp
ft_set/ft_set_iterator.hpp
main.cpp)