diff options
| author | Fuwn <[email protected]> | 2022-06-01 12:15:18 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-06-01 12:15:18 -0700 |
| commit | dfe06c0de4d07ff0dc770e9a0819f94b1e660ae9 (patch) | |
| tree | fa4554180923ea47b9618b3ad3d04f6183a12104 /CMakeLists.txt | |
| download | cs162-main.tar.xz cs162-main.zip | |
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..92bf824 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,8 @@ +cmake_minimum_required(VERSION 3.21) +project(cs162) + +set(CMAKE_CXX_EXTENSIONS OFF) +set(CMAKE_CXX_STANDARD 23) +set(CMAKE_CXX_STANDARD_REQUIRED ON) + +add_subdirectory(cs162) |