Skip to content

Commit 5a4209c

Browse files
author
markgrin
committed
Начало разработки
0 parents  commit 5a4209c

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

CMakeLists.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
cmake_minimum_required(VERSION 2.8)
2+
project(voip)
3+
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++17")
4+
5+
set (ANALYZER_SRC src/main.cpp)
6+
7+
add_executable(analyzer ${ANALYZER_SRC})

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Comparison of predictive dialer methods

src/main.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#include <iostream>
2+
3+
int main () {
4+
std::cout << "Predictive dialing methods analyzer\n";
5+
return 0;
6+
}

0 commit comments

Comments
 (0)