Minor change to CMakeLists.txt
authorHarishankar <v.harishankar@gmail.com>
Thu, 21 May 2020 16:09:25 +0000 (21:39 +0530)
committerHarishankar <v.harishankar@gmail.com>
Thu, 21 May 2020 16:09:25 +0000 (21:39 +0530)
Minor changes to CMakeLists.txt

CMakeLists.txt

index 47c11a9..02a31b7 100644 (file)
@@ -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}")