File tree 3 files changed +6
-15
lines changed
3 files changed +6
-15
lines changed Original file line number Diff line number Diff line change 3
3
cmake-build-debug
4
4
cmake-build-debug /*
5
5
6
+ .DS_Store
7
+
6
8
# Prerequisites
7
9
* .d
8
10
Original file line number Diff line number Diff line change @@ -3,23 +3,9 @@ project(memo)
3
3
4
4
set (CMAKE_CXX_STANDARD 17)
5
5
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
-
16
6
set (SOURCE_FILES main.cpp colors.h)
17
7
add_executable (memo ${SOURCE_FILES} )
18
8
19
9
include_directories (/usr/local/opt/sqlite/include )
20
10
link_directories (/usr/local/opt/sqlite/lib)
21
11
target_link_libraries (memo sqlite3)
22
-
23
- if (Boost_FOUND)
24
- target_link_libraries (memo ${Boost_LIBRARIES} )
25
- endif ()
Original file line number Diff line number Diff line change 1
- # Memo
1
+ # Memo
2
+
3
+ Used lib's:
4
+ - TermColors - https://github.com/ikalnytskyi/termcolor/blob/master/include/termcolor/termcolor.hpp
You can’t perform that action at this time.
0 commit comments