Files
cpp-course/modules/09_cpp11/CMakeLists.txt
T

9 lines
553 B
CMake
Raw Normal View History

2026-08-11 17:40:36 +03:00
add_course_exercise(NAME auto_and_range_for MODULE 09_cpp11 STANDARD 11
SOURCES src/auto_and_range_for.cpp test/auto_and_range_for_test.cpp)
add_course_exercise(NAME smart_pointers MODULE 09_cpp11 STANDARD 11
SOURCES src/smart_pointers.cpp test/smart_pointers_test.cpp)
add_course_exercise(NAME move_semantics MODULE 09_cpp11 STANDARD 11
SOURCES src/move_semantics.cpp test/move_semantics_test.cpp)
add_course_exercise(NAME constexpr_nullptr MODULE 09_cpp11 STANDARD 11
SOURCES src/constexpr_nullptr.cpp test/constexpr_nullptr_test.cpp)