Skip to main content

Practice ยท 1 of 1

Build Command Knowledge

Implement build_command(build_type) returning the CMake configure command string: Debug โ†’ "cmake -B build-debug -DCMAKE_BUILD_TYPE=Debug", Release โ†’ "cmake -B build-release -DCMAKE_BUILD_TYPE=Release".

Difficulty: beginner

Back to lesson: Practice: Repository Practice: The README Contract