Skip to content

Commit 7910e85

Browse files
authored
Merge pull request #66 from codecrafters-io/CC-1166
CC-1166: fix typo in project name inside cmakefile.txt
2 parents 0418228 + 38683d5 commit 7910e85

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
course_definition_tester
2+
.history/

compiled_starters/cpp/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.13)
2-
project(git-starter-cpp)
2+
project(sqlite-starter-cpp)
33
set(CMAKE_CXX_STANDARD 20) # Enable the C++20 standard
44

55
set(SOURCE_FILES src/Server.cpp)

solutions/cpp/01-init/code/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.13)
2-
project(git-starter-cpp)
2+
project(sqlite-starter-cpp)
33
set(CMAKE_CXX_STANDARD 20) # Enable the C++20 standard
44

55
set(SOURCE_FILES src/Server.cpp)

starter_templates/cpp/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.13)
2-
project(git-starter-cpp)
2+
project(sqlite-starter-cpp)
33
set(CMAKE_CXX_STANDARD 20) # Enable the C++20 standard
44

55
set(SOURCE_FILES src/Server.cpp)

0 commit comments

Comments
 (0)