blob: 86408301a308eba5bac09056a6656d536490162f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
cmake_minimum_required (VERSION 3.13.4)
project (VOLGIT)
if( NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "Debug")
endif( NOT CMAKE_BUILD_TYPE)
include_directories(${CMAKE_SOURCE_DIR})
set(SOURCES
git_part.c
system_part.c
volgit.c
)
add_executable(volgit ${SOURCES})
target_link_libraries(volgit git2)
|