projects
/
biaweb2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
802d0b0
)
Minor change to CMakeLists.txt
author
Harishankar
<v.harishankar@gmail.com>
Thu, 21 May 2020 16:09:25 +0000
(21:39 +0530)
committer
Harishankar
<v.harishankar@gmail.com>
Thu, 21 May 2020 16:09:25 +0000
(21:39 +0530)
Minor changes to CMakeLists.txt
CMakeLists.txt
patch
|
blob
|
history
diff --git
a/CMakeLists.txt
b/CMakeLists.txt
index
47c11a9
..
02a31b7
100644
(file)
--- a/
CMakeLists.txt
+++ b/
CMakeLists.txt
@@
-1,6
+1,8
@@
cmake_minimum_required (VERSION 3.0)
project (biaweb2 CXX)
set (CMAKE_CXX_STANDARD 17)
+find_library (MARKDOWN markdown)
+find_library (FMT fmt)
add_executable (biaweb biaweb.cpp)
-target_link_libraries (biaweb
markdown fmt
)
+target_link_libraries (biaweb
"${MARKDOWN}" "${FMT}"
)