Skip to content

Commit 7bf3c3b

Browse files
committed
Merge branch 'master' into develop
Merge master into develop to avoid merge conflicts.
2 parents 1b108e9 + 264600e commit 7bf3c3b

File tree

63 files changed

+334
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+334
-2
lines changed

AbstractDataTypeCStyle/CMakelists.txt renamed to AbstractDataTypeCStyle/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ add_executable(AbstractDataTypeCStyle
99
"queue.h"
1010
"queue.c"
1111
"main.c"
12-
)
12+
)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

Concept/CMakeLists.txt

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
cmake_minimum_required(VERSION 3.20)
2+
3+
project(Concept)
4+
5+
set(CMAKE_CXX_STANDARD 23)
6+
set(CMAKE_CXX_STANDARD_REQUIRED ON)
7+
8+
# Adding multiple executable to the project
9+
# Right-click on each item to set as start-up project
10+
add_executable(HasPushBack
11+
"HasPushBack.hpp"
12+
"usecase_haspushback.cpp"
13+
)
14+
15+
add_executable(SupportsComparison
16+
"SupportsComparison.hpp"
17+
"usecase_comparison.cpp"
18+
)

0 commit comments

Comments
 (0)