?
Slides configuration
Slide Notes:
Hide
On Slide
On Separate Page
Merge Fragments
Show Slide Numbers
Apply
Reset
How to save slides as pdf?
Open the print dialog.
Change
Destination
to
Save to PDF
.
Change
Layout
to
Landscape
.
Change
Margins
to
None
.
Disable
Print headers and footers
option.
Enable
Print backgrounds
option.
Click the
Save
button.
Choose a filename and destination.
# C/C++ Programming ## Labo 2 --- ## Devcontainer
--- ### For each exercise * Create new directory for exercise * Add following line to main CMakeLists.txt file ```cmake add_subdirectory(my_new_directory) ``` --- ### Work in exercise directory * Add source files * Create CMakeLists.txt file ```cmake cpprog_add_executable( TARGET exercise_1 # executable will be called exercise_1 CXX_MODULES # module source files here "my_module_1.cpp" "my_module_2.cpp" CXX_SOURCES # old-style source files here "main.cpp" ) ``` Note: * convenience cmake function that does the hard work for us * compiler warnings, clang-tidy, ... --- ### Select exercise in vscode ```text View > Command Palette... > CMake: Set Launch/Debug Target ``` --- ## Exercises See digitap.