File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
solutions/cpp/01-dr6/code Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ cmake_minimum_required(VERSION 3.13)
22project (sqlite-starter-cpp)
33set (CMAKE_CXX_STANDARD 20) # Enable the C++20 standard
44
5- set ( SOURCE_FILES src/Server .cpp)
5+ file (GLOB_RECURSE SOURCE_FILES src/* .cpp)
66
77add_executable (server ${SOURCE_FILES} )
Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ cmake_minimum_required(VERSION 3.13)
22project (sqlite-starter-cpp)
33set (CMAKE_CXX_STANDARD 20) # Enable the C++20 standard
44
5- set ( SOURCE_FILES src/Server .cpp)
5+ file (GLOB_RECURSE SOURCE_FILES src/* .cpp)
66
77add_executable (server ${SOURCE_FILES} )
Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ cmake_minimum_required(VERSION 3.13)
22project (sqlite-starter-cpp)
33set (CMAKE_CXX_STANDARD 20) # Enable the C++20 standard
44
5- set ( SOURCE_FILES src/Server .cpp)
5+ file (GLOB_RECURSE SOURCE_FILES src/* .cpp)
66
77add_executable (server ${SOURCE_FILES} )
You can’t perform that action at this time.
0 commit comments