Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ include (cmake/helper.cmake)

enable_testing()

add_subdirectory(maps/profile)
add_subdirectory(vectors/profile)
add_subdirectory(smart_ptr/profile)
add_subdirectory(array/profile)
add_subdirectory(string/custom)
add_subdirectory(maps)
add_subdirectory(vectors)
add_subdirectory(smart_ptr)
add_subdirectory(array)
add_subdirectory(string)
add_subdirectory(heap)

if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
add_subdirectory(threads/profile)
add_subdirectory(threads)
endif ()
1 change: 1 addition & 0 deletions array/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
add_subdirectory(profile)
4 changes: 1 addition & 3 deletions heap/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
configure_target(system-heap system-heap.cpp)
configure_target(custom-heap custom-heap.cpp)
configure_target(memory-pool pool.cpp)
add_subdirectory(profile)
3 changes: 3 additions & 0 deletions heap/profile/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
configure_target(system-heap system-heap.cpp)
configure_target(custom-heap custom-heap.cpp)
configure_target(memory-pool pool.cpp)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions maps/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
add_subdirectory(profile)
1 change: 1 addition & 0 deletions smart_ptr/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
add_subdirectory(profile)
1 change: 1 addition & 0 deletions string/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
add_subdirectory(custom)
1 change: 1 addition & 0 deletions threads/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
add_subdirectory(profile)
1 change: 1 addition & 0 deletions vectors/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
add_subdirectory(profile)