vscode安装leetcode cmake:LeetCode的CMake项目模板
vscode安装leetcode力扣CMake LeetCode的CMake项目模板。特征:CMake项目、当地游乐场、单元测试和基准测试、跨平台文件结构。
文件结构:
LeetCodeCMake
├── CMakeLists.txt # Project wide setup
├── src
│ ├── CMakeLists.txt # Target collection
│ ├── include
│ │ ├── CMakeLists.txt # Library collection
│ │ ├── catch.h # Catch2 header file
│ │ └── leetcode.h # Leetcode header file
│ └── L0001 # Problem 1
│ ├── L0001.h # Solution file
│ ├── L0001.cpp # Playground main
│ └── TestL0001.cpp # Test main
├── cmake # CMake modules