Skip to content

Commit 42e7e95

Browse files
committed
Removed Boost lib
1 parent 2c3424e commit 42e7e95

File tree

3 files changed

+6
-15
lines changed

3 files changed

+6
-15
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
cmake-build-debug
44
cmake-build-debug/*
55

6+
.DS_Store
7+
68
# Prerequisites
79
*.d
810

CMakeLists.txt

-14
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,9 @@ project(memo)
33

44
set(CMAKE_CXX_STANDARD 17)
55

6-
find_package(Boost 1.67.0 COMPONENTS system filesystem REQUIRED)
7-
8-
if(Boost_FOUND)
9-
message(STATUS "Boost_INCLUDE_DIRS: ${Boost_INCLUDE_DIRS}")
10-
message(STATUS "Boost_LIBRARIES: ${Boost_LIBRARIES}")
11-
message(STATUS "Boost_VERSION: ${Boost_VERSION}")
12-
13-
include_directories(${Boost_INCLUDE_DIRS})
14-
endif()
15-
166
set(SOURCE_FILES main.cpp colors.h)
177
add_executable(memo ${SOURCE_FILES})
188

199
include_directories(/usr/local/opt/sqlite/include)
2010
link_directories(/usr/local/opt/sqlite/lib)
2111
target_link_libraries(memo sqlite3)
22-
23-
if(Boost_FOUND)
24-
target_link_libraries(memo ${Boost_LIBRARIES})
25-
endif()

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
# Memo
1+
# Memo
2+
3+
Used lib's:
4+
- TermColors - https://github.com/ikalnytskyi/termcolor/blob/master/include/termcolor/termcolor.hpp

0 commit comments

Comments
 (0)