diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 00000000..05799084 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,12 @@ +project(git_tutorial) +cmake_minimum_required(VERSION 3.4 FATAL_ERROR) + +set(CMAKE_BUILD_TYPE Debug) +set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/../bin) + +include_directories(include) + +file(GLOB SOURCES "src/*.c") + +add_executable(foo ${SOURCES}) +